From 8d771ad59a2feadb7efeabe2a31917eda64713a1 Mon Sep 17 00:00:00 2001 From: subhash kumar singh Date: Sat, 2 Mar 2024 01:49:29 +0530 Subject: [PATCH] Fix local build for operator Fix local build by avoiding step for header generation. Signed-off-by: subhash kumar singh --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 773a79a..c9db9c5 100644 --- a/Makefile +++ b/Makefile @@ -77,7 +77,7 @@ manifests: controller-gen ## Generate WebhookConfiguration, ClusterRole and Cust .PHONY: generate generate: controller-gen ## Generate code containing DeepCopy, DeepCopyInto, and DeepCopyObject method implementations. - $(CONTROLLER_GEN) object:headerFile="hack/boilerplate.go.txt" paths="./..." +# $(CONTROLLER_GEN) object:headerFile="hack/boilerplate.go.txt" paths="./..." .PHONY: fmt fmt: ## Run go fmt against code.