Skip to content

Commit

Permalink
chore: map arm64 cputype to arm64 binaries
Browse files Browse the repository at this point in the history
  • Loading branch information
moncho committed Oct 31, 2021
1 parent b54e63e commit e67a232
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions dryup.sh
Expand Up @@ -223,12 +223,12 @@ get_architecture() {
x86_64 | x86-64 | x64 | amd64)
local _cputype=amd64
;;
arm*)
aarch64 | arm64)
local _cputype=arm64
;;
arm*)
local _cputype=arm
;;
aarch64)
local _cputype=arm64
;;
*)
err "unknown CPU type: $CFG_CPUTYPE"

Expand Down

0 comments on commit e67a232

Please sign in to comment.