Skip to content

Commit

Permalink
Fixed use of fish shell evaluation with (...) instead of bash style $…
Browse files Browse the repository at this point in the history
…(...) (#659)
  • Loading branch information
vicenteherrera authored Oct 17, 2020
1 parent a46c82c commit bfa7b96
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion site/content/docs/user-guide/setup/install.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ Krew self-hosts).
set -x; set temp_dir (mktemp -d); cd "$temp_dir" &&
curl -fsSLO "https://github.com/kubernetes-sigs/krew/releases/latest/download/krew.tar.gz" &&
tar zxvf krew.tar.gz &&
set KREWNAME krew-(uname | tr '[:upper:]' '[:lower:]')_$(uname -m | sed -e 's/x86_64/amd64/' -e 's/arm.*$/arm/') &&
set KREWNAME krew-(uname | tr '[:upper:]' '[:lower:]')_(uname -m | sed -e 's/x86_64/amd64/' -e 's/arm.*$/arm/') &&
./$KREWNAME install krew &&
set -e KREWNAME; set -e temp_dir
end
Expand Down

0 comments on commit bfa7b96

Please sign in to comment.