From 1d44b370d9446d88fd6c96aae2b3f5bfb7c93e1d Mon Sep 17 00:00:00 2001 From: jjllee Date: Tue, 12 Nov 2024 17:48:56 -0800 Subject: [PATCH] echo CURDIR in lint --- Makefile.Common | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Makefile.Common b/Makefile.Common index 91eb17359434..a561bb7a5fa8 100644 --- a/Makefile.Common +++ b/Makefile.Common @@ -196,6 +196,8 @@ fmt: $(GOIMPORTS) .PHONY: lint lint: $(LINT) checklicense misspell + echo "hi" + echo "$(CURDIR)" $(LINT) run --allow-parallel-runners --verbose --build-tags integration --timeout=30m --path-prefix $(shell basename "$(CURDIR)") .PHONY: govulncheck