Skip to content

Commit

Permalink
fix(bundler): armv7 appimage bundler uses invalid download links [closes
Browse files Browse the repository at this point in the history
 #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>
  • Loading branch information
Broken-Deer and FabianLars authored Aug 14, 2024
1 parent 9f75d06 commit 521d1d5
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .changes/change-pr-10619.md
Original file line number Diff line number Diff line change
@@ -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.
1 change: 1 addition & 0 deletions tooling/bundler/src/bundle/linux/appimage.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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");
Expand Down

0 comments on commit 521d1d5

Please sign in to comment.