From 0933d20f2af55b884183f1ae14b17a4ec65f957c Mon Sep 17 00:00:00 2001 From: hanenMizouni Date: Thu, 12 Dec 2024 10:26:30 +0000 Subject: [PATCH] remove unecessary vendor Signed-off-by: hanenMizouni --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 760b07874..857679f4e 100644 --- a/Makefile +++ b/Makefile @@ -139,7 +139,7 @@ vet: ## Run go vet against code. format: gofmt gospace yamlspace yamlfmt gofmt: ## Run gofmt - find . -name "*.go" | grep -v "\/vendor\/" | xargs gofmt -s -w + find . -name "*.go" | xargs gofmt -s -w .PHONY: gospace gospace: ## Run to remove trailling space @@ -151,7 +151,7 @@ yamlspace: ## Run to remove trailling space .PHONY: yamlfmt yamlfmt: install-yamlfmt - find . -name "*.yaml" -not -path "./helm/*" -not -path "./.github/workflows/*" | grep -v "\/vendor\/" | xargs yamlfmt + find . -name "*.yaml" -not -path "./helm/*" -not -path "./.github/workflows/*" | xargs yamlfmt .PHONY: checkfmt checkfmt: ## check gofmt