From 6b6869e3278c7c38b21b54254860ca703058f3a5 Mon Sep 17 00:00:00 2001 From: deepend Date: Sun, 22 Feb 2026 10:10:24 -0700 Subject: [PATCH] Updated the AppImage AppRun generation in CI so PATH now keeps the host entries first and appends AppDir/usr/bin after, preventing helper modules from accidentally invoking an incomplete bundled python3. --- .github/workflows/appimage-build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/appimage-build.yml b/.github/workflows/appimage-build.yml index 3ecee2b3..4b7a15a3 100644 --- a/.github/workflows/appimage-build.yml +++ b/.github/workflows/appimage-build.yml @@ -98,7 +98,7 @@ jobs: APPDIR="${APPDIR:-$(dirname "$(readlink -f "$0")")}" - export PATH="$APPDIR/usr/bin:${PATH:-/usr/bin:/bin}" + export PATH="${PATH:-/usr/bin:/bin}:$APPDIR/usr/bin" export LD_LIBRARY_PATH="$APPDIR/usr/lib:$APPDIR/usr/lib/x86_64-linux-gnu:${LD_LIBRARY_PATH:-}" export XDG_DATA_DIRS="$APPDIR/usr/share:${XDG_DATA_DIRS:-/usr/local/share:/usr/share}"