Skip to content

Commit

Permalink
add arm64 for darwin (apple silicon)
Browse files Browse the repository at this point in the history
Signed-off-by: sriv <[email protected]>
  • Loading branch information
sriv committed Jul 9, 2021
1 parent ed88b15 commit e874f55
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions build/make.go
Original file line number Diff line number Diff line change
Expand Up @@ -242,6 +242,9 @@ func getUserHome() string {

func getArch() string {
arch := getGOARCH()
if arch == ARM64 {
return ARM64
}
if arch == X86 {
return "x86"
}
Expand Down

0 comments on commit e874f55

Please sign in to comment.