Skip to content

Commit

Permalink
Use quotes for download links
Browse files Browse the repository at this point in the history
ZSH automatically escape links and breaks copy + paste
  • Loading branch information
Martin Vladev committed Jan 7, 2019
1 parent ed7c770 commit cb425ee
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/book/getting_started/installation_and_setup.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ version=1.0.6 # latest stable version
arch=amd64

# download the release
curl -L -O https://github.com/kubernetes-sigs/kubebuilder/releases/download/v${version}/kubebuilder_${version}_darwin_${arch}.tar.gz
curl -L -O "https://github.com/kubernetes-sigs/kubebuilder/releases/download/v${version}/kubebuilder_${version}_darwin_${arch}.tar.gz"

# extract the archive
tar -zxvf kubebuilder_${version}_darwin_${arch}.tar.gz
Expand All @@ -31,7 +31,7 @@ version=1.0.6 # latest stable version
arch=amd64

# download the release
curl -L -O https://github.com/kubernetes-sigs/kubebuilder/releases/download/v${version}/kubebuilder_${version}_linux_${arch}.tar.gz
curl -L -O "https://github.com/kubernetes-sigs/kubebuilder/releases/download/v${version}/kubebuilder_${version}_linux_${arch}.tar.gz"

# extract the archive
tar -zxvf kubebuilder_${version}_linux_${arch}.tar.gz
Expand Down

0 comments on commit cb425ee

Please sign in to comment.