diff options
author | Alexander Harkness <me@bearbin.net> | 2020-03-24 22:16:54 +0100 |
---|---|---|
committer | Alexander Harkness <me@bearbin.net> | 2020-03-24 22:23:03 +0100 |
commit | 8154bde116df2b0ff2fe535ed1bb87d00a009b52 (patch) | |
tree | b0571319a4c776c319f857fc845917f1ab0a7073 /easyinstall.sh | |
parent | Send respawn packet by default (#4540) (diff) | |
download | cuberite-8154bde116df2b0ff2fe535ed1bb87d00a009b52.tar cuberite-8154bde116df2b0ff2fe535ed1bb87d00a009b52.tar.gz cuberite-8154bde116df2b0ff2fe535ed1bb87d00a009b52.tar.bz2 cuberite-8154bde116df2b0ff2fe535ed1bb87d00a009b52.tar.lz cuberite-8154bde116df2b0ff2fe535ed1bb87d00a009b52.tar.xz cuberite-8154bde116df2b0ff2fe535ed1bb87d00a009b52.tar.zst cuberite-8154bde116df2b0ff2fe535ed1bb87d00a009b52.zip |
Diffstat (limited to '')
-rwxr-xr-x | easyinstall.sh | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/easyinstall.sh b/easyinstall.sh index b73f73173..c171ada53 100755 --- a/easyinstall.sh +++ b/easyinstall.sh @@ -17,22 +17,22 @@ if [ "$KERNEL" = "Linux" ]; then echo "Identifying platform: $PLATFORM" case $PLATFORM in - "i686") DOWNLOADURL="https://builds.cuberite.org/job/Cuberite%20Linux%20x86%20Master/lastSuccessfulBuild/artifact/Cuberite.tar.gz" ;; - "x86_64") DOWNLOADURL="https://builds.cuberite.org/job/Cuberite%20Linux%20x64%20Master/lastSuccessfulBuild/artifact/Cuberite.tar.gz" ;; + "i686") DOWNLOADURL="https://download.cuberite.org/linux-i686/Cuberite.tar.gz" ;; + "x86_64") DOWNLOADURL="https://download.cuberite.org/linux-x86_64/Cuberite.tar.gz" ;; # Assume that all arm devices are a raspi for now. - arm*) DOWNLOADURL="https://builds.cuberite.org/job/Cuberite%20Linux%20raspi-armhf%20Master/lastSuccessfulBuild/artifact/Cuberite.tar.gz" + arm*) DOWNLOADURL="https://download.cuberite.org/linux-armhf-raspbian/Cuberite.tar.gz" esac -elif [ "$KERNEL" = "Darwin" ]; then - DOWNLOADURL="https://builds.cuberite.org/job/Cuberite%20OSX%20x64%20Master/lastSuccessfulBuild/artifact/Cuberite.tar.gz" -elif [ "$KERNEL" = "FreeBSD" ]; then - DOWNLOADURL="https://builds.cuberite.org/job/Cuberite%20FreeBSD%20x64%20Master/lastSuccessfulBuild/artifact/Cuberite.tar.gz" +#elif [ "$KERNEL" = "Darwin" ]; then +# DOWNLOADURL="https://builds.cuberite.org/job/Cuberite%20OSX%20x64%20Master/lastSuccessfulBuild/artifact/Cuberite.tar.gz" +#elif [ "$KERNEL" = "FreeBSD" ]; then +# DOWNLOADURL="https://builds.cuberite.org/job/Cuberite%20FreeBSD%20x64%20Master/lastSuccessfulBuild/artifact/Cuberite.tar.gz" else echo "Unsupported kernel." exit 1 fi echo "Downloading precompiled binaries." -curl -s $DOWNLOADURL | tar -xzf - +curl -Ls $DOWNLOADURL | tar -xzf - echo "Done." echo "Cuberite is now installed, run using 'cd Server; ./Cuberite'." |