From 092879bceeb78dfbbf0931be99a95cff2fe7fd66 Mon Sep 17 00:00:00 2001 From: Janek Bevendorff Date: Tue, 28 Oct 2025 20:17:20 +0100 Subject: [PATCH] Fix AppImage launcher error, fixes #12608 --- share/linux/appimage-apprun.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/share/linux/appimage-apprun.sh b/share/linux/appimage-apprun.sh index 82d8a5610..1ce2045d7 100755 --- a/share/linux/appimage-apprun.sh +++ b/share/linux/appimage-apprun.sh @@ -3,7 +3,7 @@ if [ "$1" == "cli" ] || [ "$(basename "$ARGV0")" == "keepassxc-cli" ] || [ "$(basename "$ARGV0")" == "keepassxc-cli.AppImage" ]; then [ "$1" == "cli" ] && shift exec keepassxc-cli "$@" -elif [ "$1" == "proxy" ] || [ "$(basename "$ARGV0")" == "keepassxc-proxy" ] || [ "$(basename "$ARGV0")" == "keepassxc-proxy.AppImage" ] \\ +elif [ "$1" == "proxy" ] || [ "$(basename "$ARGV0")" == "keepassxc-proxy" ] || [ "$(basename "$ARGV0")" == "keepassxc-proxy.AppImage" ] \ || [ -v CHROME_WRAPPER ] || [ -v MOZ_LAUNCHED_CHILD ]; then [ "$1" == "proxy" ] && shift exec keepassxc-proxy "$@"