Skip to content

Commit 82eb6e7

Browse files
authored
fix(bundler): Fix appimage bundler crashing if path has spaces (#4471)
* fix(bundler): Fix appimage bundler crashing if path has spaces * add changefile
1 parent 23a049c commit 82eb6e7

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"tauri-bundler": patch
3+
---
4+
5+
Fixes AppImage bundler crashes when the file path contains whitespace.

tooling/bundler/src/bundle/linux/templates/appimage

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,4 +70,4 @@ chmod +x linuxdeploy-${ARCH}.AppImage
7070

7171
OUTPUT="{{appimage_filename}}" ./linuxdeploy-${ARCH}.AppImage --appimage-extract-and-run --appdir "{{app_name}}.AppDir" --plugin gtk ${gst_plugin} --output appimage
7272
rm -r "{{app_name}}.AppDir"
73-
mv "{{appimage_filename}}" $OUTDIR
73+
mv "{{appimage_filename}}" "$OUTDIR"

0 commit comments

Comments
 (0)