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 c46c09f commit 2f70d8dCopy full SHA for 2f70d8d
.changes/fix-5781.md
@@ -0,0 +1,5 @@
1
+---
2
+'tauri-bundler': 'patch'
3
4
+
5
+Fixed error during bundling process for the appimage target on subsequent bundling attempts.
tooling/bundler/src/bundle/linux/templates/appimage
@@ -55,9 +55,9 @@ chmod +x "{{tauri_tools_path}}/AppRun-${ARCH}"
55
cp "{{tauri_tools_path}}/AppRun-${ARCH}" AppRun
56
57
cp "{{icon_path}}" .DirIcon
58
-ln -s "{{icon_path}}" "{{app_name}}.png"
+ln -sf "{{icon_path}}" "{{app_name}}.png"
59
60
-ln -s "usr/share/applications/{{app_name}}.desktop" "{{app_name}}.desktop"
+ln -sf "usr/share/applications/{{app_name}}.desktop" "{{app_name}}.desktop"
61
62
cd ..
63
0 commit comments