Skip to content

Commit

Permalink
fix: Add "arm" as an alias for armv7l as process.arch outputs arm on …
Browse files Browse the repository at this point in the history
…armv7l hosts (#6845)
  • Loading branch information
Jai-JAP authored May 6, 2022
1 parent 9dc13ba commit d3452b0
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .changeset/mean-elephants-sin.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"builder-util": patch
---

fix: Add "arm" as an alias for armv7l as process.arch outputs arm on armv7l hosts
1 change: 1 addition & 0 deletions packages/builder-util/src/arch.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ export function archFromString(name: string): Arch {
return Arch.ia32
case "arm64":
return Arch.arm64
case "arm":
case "armv7l":
return Arch.armv7l
case "universal":
Expand Down

0 comments on commit d3452b0

Please sign in to comment.