Skip to content

Commit

Permalink
fix(bundler): correctly set debian architecture for aarch64 (#4700)
Browse files Browse the repository at this point in the history
  • Loading branch information
lucasfernog committed Jul 17, 2022
1 parent b1d5342 commit 635f23b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .changes/fix-debian-arm64.md
@@ -0,0 +1,5 @@
---
"tauri-bundler": patch
---

Correctly fill the architecture when building Debian packages targeting ARM64 (aarch64).
1 change: 1 addition & 0 deletions tooling/bundler/src/bundle/linux/debian.rs
Expand Up @@ -55,6 +55,7 @@ pub fn bundle_project(settings: &Settings) -> crate::Result<Vec<PathBuf>> {
"x86_64" => "amd64",
// ARM64 is detected differently, armel isn't supported, so armhf is the only reasonable choice here.
"arm" => "armhf",
"aarch64" => "arm64",
other => other,
};
let package_base_name = format!(
Expand Down

0 comments on commit 635f23b

Please sign in to comment.