Skip to content

Commit

Permalink
tr command replaces one char
Browse files Browse the repository at this point in the history
  • Loading branch information
Azuki-bar committed May 29, 2023
1 parent d37de49 commit fca5edc
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 @@ -41,7 +41,7 @@ download_release() {
version="$1"
filename="$2"

arch=$(uname -m | tr 'arm64' 'aarch64')
arch=$(uname -m | sed -e's/arm64/aarch64/')
os=""
uname=$(uname -s | tr '[:upper:]' '[:lower:]')
if [ "$uname" = "linux" ]; then
Expand Down

0 comments on commit fca5edc

Please sign in to comment.