Skip to content

Commit

Permalink
Fix yq target
Browse files Browse the repository at this point in the history
Without this I was seeing:

$ make yq
tar: yq_linux_amd64: Not found in archive
tar: Exiting with failure status due to previous errors
make: *** [Makefile:240: yq] Error 2
  • Loading branch information
shanemcd committed Apr 29, 2022
1 parent bc6e30b commit 35b49ea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ ifeq (,$(shell which yq 2>/dev/null))
set -e ;\
mkdir -p $(dir $(HELM)) ;\
curl -sSLo - https://github.com/mikefarah/yq/releases/download/v4.20.2/yq_$(OS)_$(ARCHA).tar.gz | \
tar xzf - -C bin/ yq_$(OS)_$(ARCHA) ;\
tar xzf - -C bin/ ;\
mv bin/yq_$(OS)_$(ARCHA) bin/yq ;\
}
else
Expand Down

0 comments on commit 35b49ea

Please sign in to comment.