main
PC-202302260912\Administrator 2023-08-07 16:29:51 +08:00
parent 61acb57d8f
commit 4d8da0041b
1 changed files with 2 additions and 2 deletions

View File

@ -111,12 +111,12 @@ game_send_package() {
restart_server "core" "$channel"
fi
else
cat "txt/$channel" | while read -r ip; do
while read -r ip; do
unzip_package $ip $package $source_tar $destination_dir
if [[ $reboot -eq 1 ]]; then
restart_server "core" "$ip"
fi
done
done < "txt/$channel"
fi
}