Skip to content

Commit

Permalink
fix: identify reported arch 'amd64' as amd64
Browse files Browse the repository at this point in the history
Signed-off-by: Kyle Aleshire <kjaleshire@gmail.com>
  • Loading branch information
kjaleshire authored and joke committed Sep 18, 2022
1 parent 0d7f2a8 commit 8ab6039
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/utils.bash
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ detect_system() {

detect_architecture() {
case $(uname -m) in
x86_64) echo "amd64" ;;
amd64 | x86_64) echo "amd64" ;;
ppc64le) echo "ppc64le" ;;
aarch64 | aarch64_be | armv8b | armv8l | arm64) echo "arm64" ;;
*) fail "Architecture not supported" ;;
Expand Down

0 comments on commit 8ab6039

Please sign in to comment.