appimageTools: unset QT_PLUGIN_PATH to avoid conflict between QT versions packaged by system & appimage (#481707)

This commit is contained in:
Philip Taron
2026-01-19 19:14:34 +00:00
committed by GitHub
@@ -74,6 +74,10 @@ apprun() {
else echo "$(basename "$APPIMAGE")" installed in "$APPDIR"
fi
# Fix potential for the appimages to try to import libraries from QT
# installed on the system, causing a version mismatch
unset QT_PLUGIN_PATH
export PATH="$PATH:$PWD/usr/bin"
}