Skip to content

Commit

Permalink
fix: Install Script For "amd64"
Browse files Browse the repository at this point in the history
  • Loading branch information
otaviof committed Feb 10, 2024
1 parent a049ca6 commit 2ed31cf
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion hack/install-lastest-release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,8 @@ declare -r BASE_DOMAIN_PATH="github.com/repos/${REPO_OWNER}/${REPO_NAME}"

# Get the operating system and CPU type.
declare -r LOWER_OSTYPE=$(uname -s | tr '[:upper:]' '[:lower:]')
declare -r CPUTYPE=$(uname -m)
declare -r MACHINE_TYPE="$(uname -m)"
declare -r CPUTYPE="${MACHINE_TYPE/x86_64/amd64}"

# Search for the specific relase artifact URL, using the operating system and CPU
# type. Returns the full URL to the artifact, or empty if not found.
Expand Down

0 comments on commit 2ed31cf

Please sign in to comment.