Skip to content

Commit 635f23b

Browse files
authored
fix(bundler): correctly set debian architecture for aarch64 (#4700)
1 parent b1d5342 commit 635f23b

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

.changes/fix-debian-arm64.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"tauri-bundler": patch
3+
---
4+
5+
Correctly fill the architecture when building Debian packages targeting ARM64 (aarch64).

tooling/bundler/src/bundle/linux/debian.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,7 @@ pub fn bundle_project(settings: &Settings) -> crate::Result<Vec<PathBuf>> {
5555
"x86_64" => "amd64",
5656
// ARM64 is detected differently, armel isn't supported, so armhf is the only reasonable choice here.
5757
"arm" => "armhf",
58+
"aarch64" => "arm64",
5859
other => other,
5960
};
6061
let package_base_name = format!(

0 commit comments

Comments
 (0)