From 8154bde116df2b0ff2fe535ed1bb87d00a009b52 Mon Sep 17 00:00:00 2001 From: Alexander Harkness Date: Tue, 24 Mar 2020 21:16:54 +0000 Subject: [PATCH] Replace downloads links with new redirect server links --- easyinstall.sh | 16 ++++++++-------- 1 file 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'."