Skip to content

Commit 1e40b5b

Browse files
committed
fix(bundler): Move AppRun to mirror
1 parent 3d12981 commit 1e40b5b

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

.changes/apprun-mirror.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
tauri-bundler: patch:bug
3+
---
4+
5+
The AppImage bundler now pulls the AppRun binaries from our GitHub mirror, fixing 404 errors.

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ find -L /usr/lib* -name WebKitNetworkProcess -exec mkdir -p "$(dirname '{}')" \;
4747
find -L /usr/lib* -name WebKitWebProcess -exec mkdir -p "$(dirname '{}')" \; -exec cp --parents '{}' "." \; || true
4848
find -L /usr/lib* -name libwebkit2gtkinjectedbundle.so -exec mkdir -p "$(dirname '{}')" \; -exec cp --parents '{}' "." \; || true
4949

50-
( cd "{{tauri_tools_path}}" && ( wget -q -4 -N https://github.com/AppImage/AppImageKit/releases/download/continuous/AppRun-${ARCH} || wget -q -4 -N https://github.com/AppImage/AppImageKit/releases/download/12/AppRun-${ARCH} ) )
50+
( cd "{{tauri_tools_path}}" && ( wget -q -4 -N https://github.com/tauri-apps/binary-releases/releases/download/apprun-old/AppRun-{arch} || wget -q -4 -N https://github.com/AppImage/AppImageKit/releases/download/12/AppRun-${ARCH} ) )
5151
chmod +x "{{tauri_tools_path}}/AppRun-${ARCH}"
5252

5353
# We need AppRun to be installed as {{app_name}}.AppDir/AppRun.

0 commit comments

Comments
 (0)