From 888bb8897a58d98ed8dab76dfab8cf352a4d5c9f Mon Sep 17 00:00:00 2001 From: Syer10 Date: Sun, 20 Jul 2025 17:26:15 -0400 Subject: [PATCH] Update AppImageTool download location Not very impressed by the random name change that breaks existing scripts, no warning given. --- scripts/bundler.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/bundler.sh b/scripts/bundler.sh index b8f63aa3..2fcd2b15 100755 --- a/scripts/bundler.sh +++ b/scripts/bundler.sh @@ -57,7 +57,6 @@ main() { setup_jre RELEASE="$RELEASE_NAME.AppImage" - APPIMAGE_URL="https://github.com/AppImage/AppImageKit/releases/download/continuous/appimagetool-x86_64.AppImage" make_appimage move_release_to_output_dir ;; @@ -245,7 +244,8 @@ make_deb_package() { # https://linuxconfig.org/building-a-hello-world-appimage-on-linux make_appimage() { - local APPIMAGE_TOOLNAME="appimagetool-x86_64.AppImage" + local APPIMAGE_URL="https://github.com/AppImage/appimagetool/releases/download/continuous/appimagetool-x86_64.AppImage" + local APPIMAGE_TOOLNAME="appimagetool-x86_64.AppImage" mkdir "$RELEASE_NAME/bin/" cp "$JAR" "$RELEASE_NAME/bin/Suwayomi-Server.jar"