From 3cfc24f4b9ea0894d80db783a5c0cbef4dec2d2d Mon Sep 17 00:00:00 2001 From: "Darryl L. Miles" Date: Fri, 3 Oct 2025 23:42:55 +0100 Subject: [PATCH] AppImage: AppRun use #!/usr/bin/env bash There are Linux systems without bash installed at /bin/sh or it is in a non-standard location. --- appimage/rsc/AppRun | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appimage/rsc/AppRun b/appimage/rsc/AppRun index 98a0e353..f0ac9586 100755 --- a/appimage/rsc/AppRun +++ b/appimage/rsc/AppRun @@ -1,4 +1,4 @@ -#!/bin/sh +#!/usr/bin/env bash export CURDIR=$(dirname $(readlink -f "${0}")) export PATH="${CURDIR}/bin":$PATH