File tree Expand file tree Collapse file tree 2 files changed +7
-2
lines changed
cli/tauri-bundler/src/bundle/templates Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change 1+ ---
2+ " tauri-bundler " : patch
3+ ---
4+
5+ Force IPv4 on ` wget ` so AppImage bundling doesn't hang.
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ cp -r ../deb/{{bundle_name}}/data/usr {{app_name}}.AppDir
99
1010cd {{app_name}}.AppDir
1111
12- wget -q -O AppRun https://github.com/AppImage/AppImageKit/releases/download/continuous/AppRun-x86_64 || wget -q -O AppRun https://github.com/AppImage/AppImageKit/releases/download/12/AppRun-aarch64
12+ wget -q -4 - O AppRun https://github.com/AppImage/AppImageKit/releases/download/continuous/AppRun-x86_64 || wget -q -4 -O AppRun https://github.com/AppImage/AppImageKit/releases/download/12/AppRun-aarch64
1313chmod +x AppRun
1414
1515cp usr/share/icons/hicolor/256x256/apps/{{app_name}}.png {{app_name}}.png
@@ -31,7 +31,7 @@ mv {{app_name}}.desktop {{app_name}}.AppDir/{{app_name}}.desktop
3131
3232mksquashfs {{app_name}}.AppDir {{app_name}}.squashfs -root-owned -noappend
3333
34- wget -q -O appimagetool https://github.com/AppImage/AppImageKit/releases/download/continuous/appimagetool-x86_64.AppImage || wget -q -O appimagetool https://github.com/AppImage/AppImageKit/releases/download/12/appimagetool-x86_64.AppImage
34+ wget -q -4 - O appimagetool https://github.com/AppImage/AppImageKit/releases/download/continuous/appimagetool-x86_64.AppImage || wget -q -4 -O appimagetool https://github.com/AppImage/AppImageKit/releases/download/12/appimagetool-x86_64.AppImage
3535chmod +x appimagetool
3636if lsmod | grep -q fuse; then
3737 ./appimagetool {{app_name}}.AppDir {{app_name}}.AppImage
You can’t perform that action at this time.
0 commit comments