Skip to content

Commit

Permalink
remove unecessary vendor
Browse files Browse the repository at this point in the history
Signed-off-by: hanenMizouni <[email protected]>
  • Loading branch information
outscale-hmi committed Dec 12, 2024
1 parent 90e2c88 commit 0933d20
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down

0 comments on commit 0933d20

Please sign in to comment.