1
0
Fork 0

Replace downloads links with new redirect server links

This commit is contained in:
Alexander Harkness 2020-03-24 21:16:54 +00:00
parent 782619e3f8
commit 8154bde116
No known key found for this signature in database
GPG Key ID: 5187245ADF160B76
1 changed files with 8 additions and 8 deletions

View File

@ -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'."