Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update install instructions in readme to 0.3.1 #293

Merged
merged 1 commit into from
Sep 9, 2019
Merged
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
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