Skip to content

Commit

Permalink
Fix readme for wrong use of fish subshell in string (kubernetes-sigs#215
Browse files Browse the repository at this point in the history
)
  • Loading branch information
kirrmann authored and k8s-ci-robot committed Jun 27, 2019
1 parent 083a44a commit 76cbc8c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,13 +68,13 @@ Read the [User Guide](./docs/USER_GUIDE.md) for detailed documentation.

```fish
begin
set -x; cd "(mktemp -d)" &&
set -x; set temp_dir (mktemp -d); cd "$temp_dir" &&
curl -fsSLO "https://storage.googleapis.com/krew/v0.2.1/krew.{tar.gz,yaml}" &&
tar zxvf krew.tar.gz &&
set KREWNAME krew-(uname | tr '[:upper:]' '[:lower:]')_amd64 &&
./$KREWNAME install \
--manifest=krew.yaml --archive=krew.tar.gz &&
set -e KREWNAME
set -e KREWNAME; set -e temp_dir
end
```
3. Add `$HOME/.krew/bin` directory to your PATH environment variable. To do
Expand Down

0 comments on commit 76cbc8c

Please sign in to comment.