diff options
author | Alexander Harkness <me@bearbin.net> | 2022-01-22 02:08:51 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-22 02:08:51 +0100 |
commit | 5614d267f77d595c1df0e2d1331bfe653c575530 (patch) | |
tree | ed1088a6afa92019fc84f8c35da5ff2185310731 | |
parent | ByteBuffer: fully defined Position handling (diff) | |
download | cuberite-5614d267f77d595c1df0e2d1331bfe653c575530.tar cuberite-5614d267f77d595c1df0e2d1331bfe653c575530.tar.gz cuberite-5614d267f77d595c1df0e2d1331bfe653c575530.tar.bz2 cuberite-5614d267f77d595c1df0e2d1331bfe653c575530.tar.lz cuberite-5614d267f77d595c1df0e2d1331bfe653c575530.tar.xz cuberite-5614d267f77d595c1df0e2d1331bfe653c575530.tar.zst cuberite-5614d267f77d595c1df0e2d1331bfe653c575530.zip |
Diffstat (limited to '')
-rwxr-xr-x | easyinstall.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/easyinstall.sh b/easyinstall.sh index eb261cbc9..3e52ce9f2 100755 --- a/easyinstall.sh +++ b/easyinstall.sh @@ -22,7 +22,7 @@ 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" ;; # Allow install on Raspberry Pi 4 Ubuntu x64 (AArch64) using the ARM builds. - "aarch64") DOWNLOADURL="https://download.cuberite.org/linux-armhf-raspbian/Cuberite.tar.gz" + "aarch64") DOWNLOADURL="https://download.cuberite.org/linux-aarch64/Cuberite.tar.gz" esac elif [ "$KERNEL" = "Darwin" ]; then # All Darwins we care about are x86_64 |