* Update appimage.rs * Update appimage.rs * Create change-pr-10619.md * Update change-pr-10619.md --------- Co-authored-by: Fabian-Lars <fabianlars@fabianlars.de>
@@ -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.
@@ -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");