We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0e91ba7 commit e456e3eCopy full SHA for e456e3e
Makefile
@@ -104,14 +104,14 @@ mod-verify:
104
105
mod-vendor: mod-tidy
106
@for mod in $$(find . -name go.mod -not -path "./deployments/*"); do \
107
- echo "Verifying $$mod..."; ( \
+ echo "Vendoring $$mod..."; ( \
108
cd $$(dirname $$mod) && go mod vendor \
109
) || exit 1; \
110
done
111
112
vendor: mod-vendor
113
114
-check-modules: vendor
+check-modules: | mod-tidy mod-verify mod-vendor
115
git diff --quiet HEAD -- $$(find . -name go.mod -o -name go.sum -o -name vendor)
116
117
COVERAGE_FILE := coverage.out
0 commit comments