From 7c506a42aecd122dd7fdb44a6559b39b0c6e878b Mon Sep 17 00:00:00 2001 From: Syer10 Date: Mon, 14 Jul 2025 18:59:50 -0400 Subject: [PATCH] Install libfuse2 when creating AppImage --- scripts/bundler.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/scripts/bundler.sh b/scripts/bundler.sh index 35f28a86..b8f63aa3 100755 --- a/scripts/bundler.sh +++ b/scripts/bundler.sh @@ -254,6 +254,8 @@ make_appimage() { cp "scripts/resources/appimage/AppRun" "$RELEASE_NAME/AppRun" chmod +x "$RELEASE_NAME/AppRun" + sudo apt update + sudo apt install libfuse2 curl -L $APPIMAGE_URL -o $APPIMAGE_TOOLNAME chmod +x $APPIMAGE_TOOLNAME ARCH=x86_64 ./$APPIMAGE_TOOLNAME "$RELEASE_NAME" "$RELEASE"