diff --git a/.changes/linux-apprun-url.md b/.changes/linux-apprun-url.md new file mode 100644 index 000000000..a4cf19381 --- /dev/null +++ b/.changes/linux-apprun-url.md @@ -0,0 +1,7 @@ +--- +tauri-bundler: "patch:bug" +tauri-cli: "patch:bug" +"@tauri-apps/cli": "patch:bug" +--- + +The AppImage bundler now pulls the AppRun binaries from our GitHub mirror, fixing 404 errors. diff --git a/crates/tauri-bundler/src/bundle/linux/appimage.rs b/crates/tauri-bundler/src/bundle/linux/appimage.rs index 6cda8c756..0ca812031 100644 --- a/crates/tauri-bundler/src/bundle/linux/appimage.rs +++ b/crates/tauri-bundler/src/bundle/linux/appimage.rs @@ -221,7 +221,7 @@ fn prepare_tools(tools_path: &Path, arch: &str) -> crate::Result { let apprun = tools_path.join(format!("AppRun-{arch}")); if !apprun.exists() { let data = download(&format!( - "https://github.com/AppImage/AppImageKit/releases/download/continuous/AppRun-{arch}" + "https://github.com/tauri-apps/binary-releases/releases/download/apprun-old/AppRun-{arch}" ))?; write_and_make_executable(&apprun, data)?; }