Skip to content

Commit

Permalink
fix(maker-flatpak): fix flatpakArch for arm64 (#3839)
Browse files Browse the repository at this point in the history
  • Loading branch information
pano9000 authored Feb 8, 2025
1 parent 603a314 commit 9e5633f
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions packages/maker/flatpak/src/MakerFlatpak.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@ export function flatpakArch(nodeArch: ForgeArch): string {
return 'x86_64';
case 'armv7l':
return 'arm';
case 'arm64':
return 'aarch64';
// arm => arm
default:
return nodeArch;
Expand Down

0 comments on commit 9e5633f

Please sign in to comment.