Cant install Gucci
Closed this issue · 1 comments
j-zimnowoda commented
I tried to install gucci by following steps from Readme:
VERSION=1.5.5
wget -q https://github.com/noqcks/gucci/releases/download/${VERSION}/gucci-v${VERSION}-darwin-amd64
chmod +x gucci-v${VERSION}-darwin-amd64
mv gucci-v${VERSION}-darwin-amd64 /usr/local/bin/gucci
But wget can't find the binary to download.
j-zimnowoda commented
It turned out that my terminal adds backslashes after pasting command
wget -q https://github.com/noqcks/gucci/releases/download/${VERSION}/gucci-v${VERSION}-darwin-amd64
Terminal adds backslashes:
wget -q https://github.com/noqcks/gucci/releases/download/$\{VERSION\}/gucci-v$\{VERSION\}-darwin-amd64
Adding quotes around url solves that issue