Update install_dev.sh

pull/382/head
midoks 2 years ago
parent a1bc0f6faf
commit d6f41ceb6a
  1. 17
      scripts/install_dev.sh

@ -60,10 +60,16 @@ else
fi fi
# HTTP_PREFIX="https://"
# curl --insecure -fsSL -m 1 https://github.com
# if [ "$?" != "0" ];then
# HTTP_PREFIX="https://ghproxy.com/"
# fi
cn=$(curl -fsSL -m 10 http://ipinfo.io/json | grep "\"country\": \"CN\"")
HTTP_PREFIX="https://" HTTP_PREFIX="https://"
curl --insecure -fsSL -m 1 https://github.com if [ ! -z "$cn" ];then
if [ "$?" != "0" ];then HTTP_PREFIX="https://ghproxy.com/"
HTTP_PREFIX="https://ghproxy.com/"
fi fi
@ -101,11 +107,6 @@ fi
echo "use system version: ${OSNAME}" echo "use system version: ${OSNAME}"
if [ "${OSNAME}" == "macos" ];then if [ "${OSNAME}" == "macos" ];then
# cn=$(curl -fsSL -m 10 http://ipinfo.io/json | grep "\"country\": \"CN\"")
# HTTP_PREFIX="https://"
# if [ ! -z "$cn" ];then
# HTTP_PREFIX="https://ghproxy.com/"
# fi
curl -fsSL ${HTTP_PREFIX}raw.githubusercontent.com/midoks/mdserver-web/dev/scripts/install/macos.sh | bash curl -fsSL ${HTTP_PREFIX}raw.githubusercontent.com/midoks/mdserver-web/dev/scripts/install/macos.sh | bash
else else
cd /www/server/mdserver-web && bash scripts/install/${OSNAME}.sh cd /www/server/mdserver-web && bash scripts/install/${OSNAME}.sh

Loading…
Cancel
Save