From 891aa8c7b163d5ee8957ee2b4a90369dd179f7f6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vin=C3=ADcius=20Garcia?= Date: Wed, 6 Jul 2022 20:21:23 -0300 Subject: [PATCH] Fix find command to work on mac and linux --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index e97559a..58a6675 100644 --- a/Makefile +++ b/Makefile @@ -27,7 +27,7 @@ lint: setup go-mod-tidy # Run go mod tidy for all submodules: go-mod-tidy: - @find -name go.mod -execdir go mod tidy \; + find . -name go.mod -execdir go mod tidy \; gen: mock mock: setup