Skip to content

Commit 48abffd

Browse files
authored
docs: Fix variable substitution in Linux install URL (#2327)
1 parent b06746a commit 48abffd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,8 +55,8 @@ You just have to download the binary compatible with your platform to a director
5555
VERSION="2.5.1"
5656

5757
# Download the release from github
58-
sudo curl -o /usr/local/bin/scw -L "https://github.com/scaleway/scaleway-cli/releases/download/v$VERSION/scaleway-cli_$VERSION_linux_amd64"
59-
# Naming changed lately, the url prior to 2.5.1 was https://github.com/scaleway/scaleway-cli/releases/download/v$VERSION/scw-$VERSION-linux-x86_64
58+
sudo curl -o /usr/local/bin/scw -L "https://github.com/scaleway/scaleway-cli/releases/download/v${VERSION}/scaleway-cli_${VERSION}_linux_amd64"
59+
# Naming changed lately, the url prior to 2.5.1 was https://github.com/scaleway/scaleway-cli/releases/download/v${VERSION}/scw-${VERSION}-linux-x86_64
6060

6161
# Allow executing file as program
6262
sudo chmod +x /usr/local/bin/scw

0 commit comments

Comments
 (0)