summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Harkness <me@bearbin.net>2020-04-09 22:36:45 +0200
committerAlexander Harkness <me@bearbin.net>2020-04-09 22:41:16 +0200
commitdf8d7332d03be02c27da71a12b67eb5a7d080af0 (patch)
tree1b63239a187e0dd4b7cf53ce3868ff722fb40111
parentDon't set entity world twice (#4606) (diff)
downloadcuberite-df8d7332d03be02c27da71a12b67eb5a7d080af0.tar
cuberite-df8d7332d03be02c27da71a12b67eb5a7d080af0.tar.gz
cuberite-df8d7332d03be02c27da71a12b67eb5a7d080af0.tar.bz2
cuberite-df8d7332d03be02c27da71a12b67eb5a7d080af0.tar.lz
cuberite-df8d7332d03be02c27da71a12b67eb5a7d080af0.tar.xz
cuberite-df8d7332d03be02c27da71a12b67eb5a7d080af0.tar.zst
cuberite-df8d7332d03be02c27da71a12b67eb5a7d080af0.zip
-rwxr-xr-xeasyinstall.sh5
1 files changed, 3 insertions, 2 deletions
diff --git a/easyinstall.sh b/easyinstall.sh
index c171ada53..17e60dbc6 100755
--- a/easyinstall.sh
+++ b/easyinstall.sh
@@ -22,8 +22,9 @@ if [ "$KERNEL" = "Linux" ]; then
# Assume that all arm devices are a raspi for now.
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" = "Darwin" ]; then
+ # All Darwins we care about are x86_64
+ DOWNLOADURL="https://download.cuberite.org/darwin-x86_64/Cuberite.tar.gz"
#elif [ "$KERNEL" = "FreeBSD" ]; then
# DOWNLOADURL="https://builds.cuberite.org/job/Cuberite%20FreeBSD%20x64%20Master/lastSuccessfulBuild/artifact/Cuberite.tar.gz"
else