From 521d1d5cdb052df554c022659f527ca7914dc65f Mon Sep 17 00:00:00 2001 From: Broken_Deer <64290747+Broken-Deer@users.noreply.github.com> Date: Wed, 14 Aug 2024 23:39:36 +0800 Subject: [PATCH] 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 --- .changes/change-pr-10619.md | 5 +++++ tooling/bundler/src/bundle/linux/appimage.rs | 1 + 2 files changed, 6 insertions(+) create mode 100644 .changes/change-pr-10619.md 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");