Skip to content

Commit

Permalink
Update install instructions in readme to 0.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Carlos Santana authored and tekton-robot committed Sep 9, 2019
1 parent ab5f516 commit f6e7795
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,13 @@ Tekton!

Download the latest binary executable for your operating system:

* [Mac OS X](https://github.com/tektoncd/cli/releases/download/v0.3.0/tkn_0.3.0_Darwin_x86_64.tar.gz)
* [Mac OS X](https://github.com/tektoncd/cli/releases/download/v0.3.1/tkn_0.3.1_Darwin_x86_64.tar.gz)

```shell
# Get the tar.xz
curl -LO https://github.com/tektoncd/cli/releases/download/v0.3.0/tkn_0.3.0_Darwin_x86_64.tar.gz
curl -LO https://github.com/tektoncd/cli/releases/download/v0.3.1/tkn_0.3.1_Darwin_x86_64.tar.gz
# Extract tkn to your PATH (e.g. /usr/local/bin)
sudo tar xvzf tkn_0.3.0_Darwin_x86_64.tar.gz -C /usr/local/bin tkn
sudo tar xvzf tkn_0.3.1_Darwin_x86_64.tar.gz -C /usr/local/bin tkn
```

You can also use [@chmouel](https://github.com/chmouel)'s unofficial
Expand All @@ -28,25 +28,25 @@ Download the latest binary executable for your operating system:
brew install tektoncd-cli
```

* [Linux AMD 64](https://github.com/tektoncd/cli/releases/download/v0.3.0/tkn_0.3.0_Linux_x86_64.tar.gz)
* [Linux AMD 64](https://github.com/tektoncd/cli/releases/download/v0.3.1/tkn_0.3.1_Linux_x86_64.tar.gz)

```shell
# Get the tar.xz
curl -LO https://github.com/tektoncd/cli/releases/download/v0.3.0/tkn_0.3.0_Linux_x86_64.tar.gz
curl -LO https://github.com/tektoncd/cli/releases/download/v0.3.1/tkn_0.3.1_Linux_x86_64.tar.gz
# Extract tkn to your PATH (e.g. /usr/local/bin)
sudo tar xvzf tkn_0.3.0_Linux_x86_64.tar.gz -C /usr/local/bin/ tkn
sudo tar xvzf tkn_0.3.1_Linux_x86_64.tar.gz -C /usr/local/bin/ tkn
```

* [Linux ARM 64](https://github.com/tektoncd/cli/releases/download/v0.3.0/tkn_0.3.0_Linux_arm64.tar.gz)
* [Linux ARM 64](https://github.com/tektoncd/cli/releases/download/v0.3.1/tkn_0.3.1_Linux_arm64.tar.gz)

```shell
# Get the tar.xz
curl -LO https://github.com/tektoncd/cli/releases/download/v0.3.0/tkn_0.3.0_Linux_arm64.tar.gz
curl -LO https://github.com/tektoncd/cli/releases/download/v0.3.1/tkn_0.3.1_Linux_arm64.tar.gz
# Extract tkn to your PATH (e.g. /usr/local/bin)
sudo tar xvzf tkn_0.3.0_Linux_arm64.tar.gz -C /usr/local/bin/ tkn
sudo tar xvzf tkn_0.3.1_Linux_arm64.tar.gz -C /usr/local/bin/ tkn
```

If you have [go](https://golang.org/) installed, `GO111MODULE="on" go get github.com/tektoncd/cli@v0.3.0` is all you need!
If you have [go](https://golang.org/) installed, `GO111MODULE="on" go get github.com/tektoncd/cli@v0.3.1` is all you need!

### `tkn` as a `kubectl` plugin

Expand Down

0 comments on commit f6e7795

Please sign in to comment.