Skip to content

Commit 7a6fd5b

Browse files
authored
fix(bundler): Move AppRun to mirror (#13863)
1 parent 7f3c989 commit 7a6fd5b

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

.changes/linux-apprun-url.md

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

crates/tauri-bundler/src/bundle/linux/appimage.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -221,7 +221,7 @@ fn prepare_tools(tools_path: &Path, arch: &str) -> crate::Result<PathBuf> {
221221
let apprun = tools_path.join(format!("AppRun-{arch}"));
222222
if !apprun.exists() {
223223
let data = download(&format!(
224-
"https://github.com/AppImage/AppImageKit/releases/download/continuous/AppRun-{arch}"
224+
"https://github.com/tauri-apps/binary-releases/releases/download/apprun-old/AppRun-{arch}"
225225
))?;
226226
write_and_make_executable(&apprun, data)?;
227227
}

0 commit comments

Comments
 (0)