fix(autoupdate): Add aarch64 to apple silicon target

This commit is contained in:
Frigyes Erdosi-Szucs 2025-03-10 09:35:03 -07:00
commit 657ebcb16e

View file

@ -243,7 +243,7 @@ pub const fn bin_name() -> &'static str {
"uad-ng-macos-intel"
}
#[cfg(all(target_os = "macos", target_arch = "arm"))]
#[cfg(all(target_os = "macos", any(target_arch = "arm", target_arch = "aarch64")))]
{
"uad-ng-macos"
}