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>
This commit is contained in:
Broken_Deer 2024-08-14 23:39:36 +08:00 committed by GitHub
parent 9f75d06228
commit 521d1d5cdb
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 6 additions and 0 deletions

View File

@ -0,0 +1,5 @@
---
"tauri-bundler": "patch:bug"
---
Fixed an issue that caused the bundler to not be able to download the AppImage tooling when building for ARM 32bit.

View File

@ -27,6 +27,7 @@ pub fn bundle_project(settings: &Settings) -> crate::Result<Vec<PathBuf>> {
let arch = match settings.binary_arch() {
"x86" => "i386",
"x86_64" => "amd64",
"armv7" => "armhf",
other => other,
};
let package_dir = settings.project_out_directory().join("bundle/appimage_deb");