This commit is contained in:
Suraj Narwade
2018-08-24 19:10:08 +05:30
committed by GitHub
parent 1a7dfd97a1
commit 2f60a7206b
3 changed files with 6 additions and 6 deletions

View File

@@ -40,20 +40,20 @@ curl -L https://github.com/redhat-developer/odo/raw/master/scripts/install.sh |
```sh
# Binary installation
sudo curl -L https://github.com/redhat-developer/odo/releases/download/v0.10.0/odo-darwin-amd64 -o /usr/local/bin/odo && sudo chmod +x /usr/local/bin/odo
sudo curl -L https://github.com/redhat-developer/odo/releases/download/v0.0.10/odo-darwin-amd64 -o /usr/local/bin/odo && sudo chmod +x /usr/local/bin/odo
# Alternative, compressed tarball installation
sudo sh -c 'curl -L https://github.com/redhat-developer/odo/releases/download/v0.10.0/odo-darwin-amd64.gz | gzip -d > /usr/local/bin/odo; chmod +x /usr/local/bin/odo'
sudo sh -c 'curl -L https://github.com/redhat-developer/odo/releases/download/v0.0.10/odo-darwin-amd64.gz | gzip -d > /usr/local/bin/odo; chmod +x /usr/local/bin/odo'
```
#### Linux
```sh
# Binary installation
sudo curl -L https://github.com/redhat-developer/odo/releases/download/v0.10.0/odo-linux-amd64 -o /usr/local/bin/odo && sudo chmod +x /usr/local/bin/odo
sudo curl -L https://github.com/redhat-developer/odo/releases/download/v0.0.10/odo-linux-amd64 -o /usr/local/bin/odo && sudo chmod +x /usr/local/bin/odo
# Alternative, compressed tarball installation
sudo sh -c 'curl -L https://github.com/redhat-developer/odo/releases/download/v0.10.0/odo-linux-amd64.gz | gzip -d > /usr/local/bin/odo; chmod +x /usr/local/bin/odo'
sudo sh -c 'curl -L https://github.com/redhat-developer/odo/releases/download/v0.0.10/odo-linux-amd64.gz | gzip -d > /usr/local/bin/odo; chmod +x /usr/local/bin/odo'
```
#### Windows

View File

@@ -11,7 +11,7 @@ import (
var (
// VERSION is version number that will be displayed when running ./odo version
VERSION = "v0.10.0"
VERSION = "v0.0.10"
// GITCOMMIT is hash of the commit that wil be displayed when running ./odo version
// this will be overwritten when running build like this: go build -ldflags="-X github.com/redhat-developer/odo/cmd.GITCOMMIT=$(GITCOMMIT)"

View File

@@ -7,7 +7,7 @@ set -e
OCDEV_VERSION="latest"
# Latest released odo version
LATEST_VERSION="v0.10.0"
LATEST_VERSION="v0.0.10"
GITHUB_RELEASES_URL="https://github.com/redhat-developer/odo/releases/download/${LATEST_VERSION}"
BINTRAY_URL="https://dl.bintray.com/odo/odo/latest"