diff --git a/.changes/change-pr-10619.md b/.changes/change-pr-10619.md new file mode 100644 index 000000000..88d292cfd --- /dev/null +++ b/.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. diff --git a/tooling/bundler/src/bundle/linux/appimage.rs b/tooling/bundler/src/bundle/linux/appimage.rs index 649f87f98..c5b32d29d 100644 --- a/tooling/bundler/src/bundle/linux/appimage.rs +++ b/tooling/bundler/src/bundle/linux/appimage.rs @@ -27,6 +27,7 @@ pub fn bundle_project(settings: &Settings) -> crate::Result> { 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");