From a3340ff3d983384ade7c0d21996e9b870b0d7c09 Mon Sep 17 00:00:00 2001 From: Aliaksei Makarau Date: Thu, 9 Nov 2023 09:30:57 +0100 Subject: [PATCH] place kustomize into the /usr/local/bin --- Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile b/Makefile index 310cb701c..3d3d2a3cd 100644 --- a/Makefile +++ b/Makefile @@ -130,6 +130,7 @@ ifeq (,$(shell which kustomize 2>/dev/null)) mkdir -p $(dir $(KUSTOMIZE)) ;\ curl -sSLo - https://github.com/kubernetes-sigs/kustomize/releases/download/kustomize/v5.2.1/kustomize_v5.2.1_$(OS)_$(ARCH).tar.gz | \ tar xzf - -C bin/ ;\ + tar xzf - -C /usr/local/bin/ ;\ } else KUSTOMIZE = $(shell which kustomize)