From 97b46ad01acef305bbced6fe2bc76cc3697d59e7 Mon Sep 17 00:00:00 2001 From: TheBrokenRail Date: Sat, 25 Nov 2023 18:22:43 -0500 Subject: [PATCH] Fix AppImage updating, which has apparently been broken for *years*. Why didn't anyone tell me???? --- scripts/package.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/package.sh b/scripts/package.sh index 21cb1cf..dd6e3fb 100755 --- a/scripts/package.sh +++ b/scripts/package.sh @@ -31,7 +31,7 @@ case "${ARCH}" in 'amd64') APPIMAGE_ARCH='x86_64';; esac ARCH="${APPIMAGE_ARCH}" appimagetool \ - --updateinformation "zsync|https://gitea.thebrokenrail.com/minecraft-pi-reborn/minecraft-pi-reborn/releases/download/latest/${NAME}-latest-${ARCH}.AppImage.zsync" \ + --updateinformation "zsync|https://gitea.thebrokenrail.com/minecraft-pi-reborn/minecraft-pi-reborn/releases/download/latest/${NAME}-${MODE}-latest-${ARCH}.AppImage.zsync" \ --runtime-file "build/appimage/runtime-${ARCH}" \ --comp xz \ "./out/${MODE}-${ARCH}" \