summaryrefslogtreecommitdiffstats
path: root/easyinstall.sh
diff options
context:
space:
mode:
Diffstat (limited to 'easyinstall.sh')
-rwxr-xr-xeasyinstall.sh8
1 files changed, 4 insertions, 4 deletions
diff --git a/easyinstall.sh b/easyinstall.sh
index 15ca1d358..71d99312b 100755
--- a/easyinstall.sh
+++ b/easyinstall.sh
@@ -4,14 +4,14 @@ PLATFORM=$(uname -m)
echo "Identifying platform: $PLATFORM"
case $PLATFORM in
- "i686") DOWNLOADURL="http://builds.cuberite.org/job/MCServer%20Linux%20x86/lastSuccessfulBuild/artifact/MCServer.tar.gz" ;;
- "x86_64") DOWNLOADURL="http://builds.cuberite.org/job/MCServer%20Linux%20x64/lastSuccessfulBuild/artifact/MCServer.tar.gz" ;;
+ "i686") DOWNLOADURL="http://builds.cuberite.org/job/Cuberite%20Linux%20x86%20Master/lastSuccessfulBuild/artifact/Cuberite.tar.gz" ;;
+ "x86_64") DOWNLOADURL="http://builds.cuberite.org/job/Cuberite%20Linux%20x64%20Master/lastSuccessfulBuild/artifact/Cuberite.tar.gz" ;;
# Assume that all arm devices are a raspi for now.
- arm*) DOWNLOADURL="http://builds.cuberite.org/job/MCServer%20Linux%20armhf/lastSuccessfulBuild/artifact/MCServer/MCServer.tar.gz"
+ arm*) DOWNLOADURL="http://builds.cuberite.org/job/Cuberite%20Linux%20raspi-armhf%20Master/lastSuccessfulBuild/artifact/Cuberite.tar.gz"
esac
echo "Downloading precompiled binaries."
curl -s $DOWNLOADURL | tar -xzf -
echo "Done."
-echo "MCServer is now installed, run using 'cd MCServer; ./MCServer'."
+echo "Cuberite is now installed, run using 'cd MCServer; ./MCServer'."