Skip to content

Commit

Permalink
Fix kubebuilder release download
Browse files Browse the repository at this point in the history
Recommended here: kubernetes-sigs/kubebuilder#2311

Signed-off-by: John Starich <johnstarich@johnstarich.com>
  • Loading branch information
JohnStarich committed Sep 1, 2021
1 parent 497c444 commit 2f04d66
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 @@ -54,7 +54,7 @@ cache/kubebuilder_${KUBEBUILDER_VERSION}/bin: cache
rm -rf cache/kubebuilder_${KUBEBUILDER_VERSION}; \
mkdir -p cache/kubebuilder_${KUBEBUILDER_VERSION}; \
set -o pipefail; \
curl -L https://go.kubebuilder.io/dl/${KUBEBUILDER_VERSION}/$(shell go env GOOS)/$(shell go env GOARCH) | tar --strip-components=1 -xz -C ./cache/kubebuilder_${KUBEBUILDER_VERSION}; \
curl -L https://github.com/kubernetes-sigs/kubebuilder/releases/download/v${KUBEBUILDER_VERSION}/kubebuilder_${KUBEBUILDER_VERSION}_$(shell go env GOOS)_$(shell go env GOARCH).tar.gz | tar --strip-components=1 -xz -C ./cache/kubebuilder_${KUBEBUILDER_VERSION}; \
fi

.PHONY: kustomize
Expand Down

0 comments on commit 2f04d66

Please sign in to comment.