From ffda124ca5c4e4a0246c3437c6e02b0ffb566e45 Mon Sep 17 00:00:00 2001 From: Jeff Regan Date: Mon, 23 Nov 2020 06:48:53 -0800 Subject: [PATCH] Update Makefile --- Makefile | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/Makefile b/Makefile index 342d75f4c..0d5b232f0 100644 --- a/Makefile +++ b/Makefile @@ -205,12 +205,15 @@ kustomize-external-go-plugin-clean: .PHONY: lint-kustomize lint-kustomize: install-tools $(builtinplugins) - cd api; \ - $(MYGOBIN)/golangci-lint-kustomize -c ../.golangci-kustomize.yml run ./... - cd kustomize; \ - $(MYGOBIN)/golangci-lint-kustomize -c ../.golangci-kustomize.yml run ./... - cd cmd/pluginator; \ - $(MYGOBIN)/golangci-lint-kustomize -c ../../.golangci-kustomize.yml run ./... + cd api; $(MYGOBIN)/golangci-lint-kustomize \ + -c ../.golangci-kustomize.yml \ + run ./... + cd kustomize; $(MYGOBIN)/golangci-lint-kustomize \ + -c ../.golangci-kustomize.yml \ + run ./... + cd cmd/pluginator; $(MYGOBIN)/golangci-lint-kustomize \ + -c ../../.golangci-kustomize.yml \ + run ./... # Used to add non-default compilation flags when experimenting with # plugin-to-api compatibility checks.