Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .goxc.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"BuildConstraints": "darwin linux windows freebsd netbsd",
"ResourcesExclude": "*.go .goxc-temp",
"MainDirsExclude": "vendor,Godeps,testdata",
"PackageVersion": "v1.4.0",
"PackageVersion": "1.4.0",
"TaskSettings": {
"bintray": {
"downloadspage": "bintray.md",
Expand Down
5 changes: 2 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -95,8 +95,7 @@ mkdir -p /usr/local/bin
mv /usr/local/bin/scw /tmp/scw.old

# get latest release
export VERSION=v1.4.0
wget "https://github.com/scaleway/scaleway-cli/releases/download/${VERSION}/scw_${VERSION}_darwin_amd64.zip" -O /tmp/scw.zip
wget "https://github.com/scaleway/scaleway-cli/releases/download/v1.4.0/scw_1.4.0_darwin_amd64.zip" -O /tmp/scw.zip
unzip /tmp/scw.zip \*/scw -d /tmp
mv /tmp/scw_*/scw /usr/local/bin
rm -rf /tmp/scw.zip /tmp/scw_*_darwin_amd64
Expand All @@ -110,7 +109,7 @@ Install the latest release on Linux:
```bash
# get latest release
export ARCH=amd64 # can be 'i386', 'amd64' or 'arm'
wget "https://github.com/scaleway/scaleway-cli/releases/download/v1.4.0/scw_v1.4.0_${ARCH}.deb" -O /tmp/scw.deb
wget "https://github.com/scaleway/scaleway-cli/releases/download/v1.4.0/scw_1.4.0_${ARCH}.deb" -O /tmp/scw.deb
dpkg -i /tmp/scw.deb && rm -f /tmp/scw.deb

# test
Expand Down