We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b3282ad commit 135beaeCopy full SHA for 135beae
make-appimage.sh
@@ -10,12 +10,15 @@ export ADD_HOOKS="self-updater.bg.hook"
10
export UPINFO="gh-releases-zsync|${GITHUB_REPOSITORY%/*}|${GITHUB_REPOSITORY#*/}|latest|*$ARCH.AppImage.zsync"
11
export DEPLOY_OPENGL=1
12
export DEPLOY_VULKAN=1
13
-export PATH_MAPPING='/usr/bin/ldd:${SHARUN_DIR}/bin/ldd'
14
15
# Deploy dependencies
16
quick-sharun ./AppDir/bin/* \
17
/usr/bin/ldd \
18
/usr/lib/libsecret*
19
+# This is hardcoded to look into /usr/bin/ldd and causes a crash
20
+# looks like we only need to patch this path away, it seems to work without it
21
+sed -i -e 's|/usr/bin/ldd|/XXX/YYY/ZZZ|g' ./AppDir/bin/resources/app.asar
22
+
23
# Turn AppDir into AppImage
24
quick-sharun --make-appimage
0 commit comments