Browse Source

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>
Broken_Deer 11 months ago
parent
commit
521d1d5cdb
2 changed files with 6 additions and 0 deletions
  1. 5 0
      .changes/change-pr-10619.md
  2. 1 0
      tooling/bundler/src/bundle/linux/appimage.rs

+ 5 - 0
.changes/change-pr-10619.md

@@ -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 - 0
tooling/bundler/src/bundle/linux/appimage.rs

@@ -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");