noqcks/gucci

Cant install Gucci

Closed this issue · 1 comments

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.

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