devops-rob / target-cli

A CLI tool to manage context profiles for HashiCorp tools
Apache License 2.0
32 stars 5 forks source link

Fix incorrect binary reference in `install.sh` to use `amd64` instead of `x86_64` #21

Closed bschaatsbergen closed 9 months ago

bschaatsbergen commented 9 months ago

Since x86_64 systems return amd64 when using uname -m, the install.sh attempts to download an asset with x86_64 in the name, which does not exist. To resolve this, the script could default to amd64 and omit the redundant x86_64 architecture check.

Closes #20

devops-rob commented 9 months ago

Ahhh I see my mistake. Thanks for taking the time to fix this! LGTM