clangcn / game-server

Koolshare小宝的游戏系列服务器,完美支持游戏NAT2

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

提一个BUG 291 行 wget

wb94 opened this issue · comments

commented

第291 行下面两个 wget 少了 --no-check-certificate 会报错。

下面是改好的

if [ "${Is_64bit}" == 'y' ] ; then
if [ ! -s ${str_game_dir}/game-server ]; then
if ! wget --no-check-certificate ${game_x64_download_url} -O ${str_game_dir}/game-server; then
echo "Failed to download game-server file!"
exit 1
fi
fi
else
if [ ! -s ${str_game_dir}/game-server ]; then
if ! wget --no-check-certificate ${game_x86_download_url} -O ${str_game_dir}/game-server; then
echo "Failed to download game-server file!"
exit 1
fi
fi
fi

commented

fixed