fix(bundler): Move AppRun to mirror (#13863)

This commit is contained in:
Fabian-Lars
2025-07-20 23:00:19 +02:00
committed by GitHub
parent 7f3c989111
commit 7a6fd5b75d
2 changed files with 8 additions and 1 deletions

View File

@@ -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.

View File

@@ -221,7 +221,7 @@ fn prepare_tools(tools_path: &Path, arch: &str) -> crate::Result<PathBuf> {
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)?;
}