devops-works / binenv

One binary to rule them all. Manage all those pesky binaries (kubectl, helm, terraform, ...) easily.
MIT License
366 stars 44 forks source link

Fix user install download command #235

Closed iainelder closed 1 year ago

iainelder commented 1 year ago

I guessed the OS and ARCH placeholders and still got a 404 because the dashes were supposed to be underscores.

Before change:

$ wget https://github.com/devops-works/binenv/releases/download/v0.19.0/binenv-linux-amd64
--2023-06-23 08:18:44--  https://github.com/devops-works/binenv/releases/download/v0.19.0/binenv-linux-amd64
Resolving github.com (github.com)... 140.82.121.3
Connecting to github.com (github.com)|140.82.121.3|:443... connected.
HTTP request sent, awaiting response... 404 Not Found
2023-06-23 08:18:45 ERROR 404: Not Found.

After change:

$ wget https://github.com/devops-works/binenv/releases/download/v0.19.0/binenv_linux_amd64
--2023-06-23 08:19:31--  https://github.com/devops-works/binenv/releases/download/v0.19.0/binenv_linux_amd64
Resolving github.com (github.com)... 140.82.121.4
Connecting to github.com (github.com)|140.82.121.4|:443... connected.
HTTP request sent, awaiting response... 302 Found
...
leucos commented 1 year ago

Thanks @iainelder !

leucos commented 1 year ago

cache updated