We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9f75d06 commit 521d1d5Copy full SHA for 521d1d5
.changes/change-pr-10619.md
@@ -0,0 +1,5 @@
1
+---
2
+"tauri-bundler": "patch:bug"
3
4
+
5
+Fixed an issue that caused the bundler to not be able to download the AppImage tooling when building for ARM 32bit.
tooling/bundler/src/bundle/linux/appimage.rs
@@ -27,6 +27,7 @@ pub fn bundle_project(settings: &Settings) -> crate::Result<Vec<PathBuf>> {
27
let arch = match settings.binary_arch() {
28
"x86" => "i386",
29
"x86_64" => "amd64",
30
+ "armv7" => "armhf",
31
other => other,
32
};
33
let package_dir = settings.project_out_directory().join("bundle/appimage_deb");
0 commit comments