Skip to content

Commit 521d1d5

Browse files
fix(bundler): armv7 appimage bundler uses invalid download links [closes #6579] (#10619)
* Update appimage.rs * Update appimage.rs * Create change-pr-10619.md * Update change-pr-10619.md --------- Co-authored-by: Fabian-Lars <fabianlars@fabianlars.de>
1 parent 9f75d06 commit 521d1d5

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

.changes/change-pr-10619.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 bundler to not be able to download the AppImage tooling when building for ARM 32bit.

tooling/bundler/src/bundle/linux/appimage.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ pub fn bundle_project(settings: &Settings) -> crate::Result<Vec<PathBuf>> {
2727
let arch = match settings.binary_arch() {
2828
"x86" => "i386",
2929
"x86_64" => "amd64",
30+
"armv7" => "armhf",
3031
other => other,
3132
};
3233
let package_dir = settings.project_out_directory().join("bundle/appimage_deb");

0 commit comments

Comments
 (0)