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 45076b3 commit aa0336dCopy full SHA for aa0336d
.changes/bundler-appimage-fix.md
@@ -0,0 +1,5 @@
1
+---
2
+"tauri-bundler": patch
3
4
+
5
+Ensure `usr/lib` is a directory in the AppImage bundle.
tooling/bundler/src/bundle/linux/templates/appimage
@@ -26,6 +26,8 @@ mkdir -p "{{app_name}}.AppDir"
26
cp -r "${OUTDIR}/../appimage_deb/data/usr" "{{app_name}}.AppDir"
27
28
cd "{{app_name}}.AppDir"
29
+mkdir -p "usr/bin"
30
+mkdir -p "usr/lib"
31
32
if [[ "$APPIMAGE_BUNDLE_XDG_OPEN" != "0" ]] && [[ -f "/usr/bin/xdg-open" ]]; then
33
echo "Copying /usr/bin/xdg-open"
0 commit comments