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

Fixing broken method for downloading kustomize #138

Merged
merged 4 commits into from
Aug 27, 2020
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
8 changes: 4 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -120,11 +120,11 @@ download-kustomize:
curl -s https://api.github.com/repos/kubernetes-sigs/kustomize/releases |\
grep browser_download |\
grep $(OPSYS) |\
grep kustomize_kustomize |\
head -n1 |\
cut -d '"' -f 4 |\
xargs curl -O -L
mv kustomize_kustomize.*_$(OPSYS)_amd64 kustomize
grep /kustomize/v |\
sort | tail -n 1 |\
xargs curl -s -O -L
tar xzf ./kustomize_v*_${OPSYS}_amd64.tar.gz
chmod u+x kustomize

gen-yaml:
Expand Down