Skip to content

Commit 1496145

Browse files
authored
fix(bundler): typo in 32bit arch (#14585)
* fix(bundler): typo in 32bit arch * changefile
1 parent f022b2d commit 1496145

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

.changes/appimage-32bit.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+
Fixed an issue that caused the AppImage bundler to fail with 404 errors for 32-bit builds.

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -232,7 +232,7 @@ fn prepare_tools(tools_path: &Path, arch: &str, verbose: bool) -> crate::Result<
232232
write_and_make_executable(&apprun, &data)?;
233233
}
234234

235-
let linuxdeploy_arch = if arch == "i686" { "i383" } else { arch };
235+
let linuxdeploy_arch = if arch == "i686" { "i386" } else { arch };
236236
let linuxdeploy = tools_path.join(format!("linuxdeploy-{linuxdeploy_arch}.AppImage"));
237237
if !linuxdeploy.exists() {
238238
let data = download(&format!("https://github.com/tauri-apps/binary-releases/releases/download/linuxdeploy/linuxdeploy-{linuxdeploy_arch}.AppImage"))?;

0 commit comments

Comments
 (0)