Skip to content

Commit b81b81f

Browse files
fix(linux): use tauri's mirror for AppRun (#354)
Co-authored-by: Lucas Nogueira <118899497+lucasfernog-crabnebula@users.noreply.github.com>
1 parent 49ea338 commit b81b81f

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
"cargo-packager": patch
3+
"@crabnebula/packager": patch
4+
---
5+
6+
Changed the download URL of a dependency of the AppImage bundler to Tauri's mirror to resolve 404 errors.

crates/packager/src/package/appimage/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ fn donwload_dependencies(
2626
let internal_deps = vec![
2727
(
2828
format!("AppRun-{arch}"),
29-
format!("https://github.com/AppImage/AppImageKit/releases/download/continuous/AppRun-{arch}")
29+
format!("https://github.com/tauri-apps/binary-releases/releases/download/apprun-old/AppRun-{arch}")
3030
),
3131
(
3232
format!("linuxdeploy-{linuxdeploy_arch}.AppImage"),

0 commit comments

Comments
 (0)