Skip to content

Commit

Permalink
chore: fix linting issues
Browse files Browse the repository at this point in the history
  • Loading branch information
omissis committed Jan 5, 2024
1 parent 9492d8a commit f8fa889
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lib/utils.bash
Original file line number Diff line number Diff line change
Expand Up @@ -76,11 +76,11 @@ get_arch() {
local arch=""

case "$(uname -m)" in
x86_64|amd64) arch="amd64"; ;;
i686|i386) arch="386"; ;;
x86_64 | amd64) arch="amd64"; ;;
i686 | i386) arch="386"; ;;
armv6l) arch="armv6"; ;;
armv7l) arch="armv7"; ;;
aarch64|arm64) arch="arm64"; ;;
aarch64 | arm64) arch="arm64"; ;;
ppc64le) arch="ppc64le"; ;;
*)
echo "Arch '$(uname -m)' not supported!" >&2
Expand Down

0 comments on commit f8fa889

Please sign in to comment.