Skip to content

Commit

Permalink
Add missing directory parameter to find command in dependabot-check (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
evantorrie committed Sep 2, 2020
1 parent faaf7c0 commit e497214
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,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; \
Expand Down

0 comments on commit e497214

Please sign in to comment.