You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When trying to use the jq plugin in ASDF I was getting the following error message:
➜ linux asdf install jq jq-1.6
Downloading from https://github.com/stedolan/jq/releases/download/jq-1.6/jq-linux-amd64
% Total% Received% Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 -: -: - -: -: - -: -: - 0
curl: (22) The requested URL returned error: 404
Error: jq version jq-1.6 not found
By doing the troubleshooting in the installation script **~ /.asdf /plugins/jq/bin/install**, I could identify that he was trying to download the binary following the convention:
local -r download_url="${DOWNLOAD_BASE_URL}/${install_version}/${BINARY_NAME}-$(platform)
The name of the returned artifact, would be: jq-linux-amd64
But on github the name of the artifact was changed, to jq-linux64, according to the link below:
Hi, I hope you are all well!
When trying to use the jq plugin in ASDF I was getting the following error message:
By doing the troubleshooting in the installation script **~ /.asdf /plugins/jq/bin/install**, I could identify that he was trying to download the binary following the convention:
The name of the returned artifact, would be: jq-linux-amd64
But on github the name of the artifact was changed, to jq-linux64, according to the link below:
https://github.com/stedolan/jq/releases/download/jq-1.6/jq-linux64
So, as a contour action, I changed the variables:
for:
And
For:
When executing the installation it was successful:
You can kindly evaluate this solution for an eventual new release.
The text was updated successfully, but these errors were encountered: