From 440c4bd060deada9af58b0c1cba61cc2cdeac3d6 Mon Sep 17 00:00:00 2001 From: ET Date: Wed, 2 Sep 2020 07:40:03 -0700 Subject: [PATCH] Stop `find` complaining due to missing directory starting point (#1116) Co-authored-by: Tyler Yahn --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 8e9c4265c5c..4eb1660fca7 100644 --- a/Makefile +++ b/Makefile @@ -159,7 +159,7 @@ license-check: .PHONY: dependabot-check dependabot-check: @result=$$( \ - for f in $$( find -type f -name go.mod -exec dirname {} \; | sed 's/^.\/\?/\//' ); \ + for f in $$( find . -type f -name go.mod -exec dirname {} \; | sed 's/^.\/\?/\//' ); \ do grep -q "$$f" .github/dependabot.yml \ || echo "$$f"; \ done; \