Files
kustomize/hacks/doGoMod.sh
2019-10-24 16:32:12 -07:00

11 lines
199 B
Bash
Executable File

# Usage: From repo root:
# ./hacks/doGoMod.sh tidy
# ./hacks/doGoMod.sh verify
operation=$1
for f in $(find ./ -name 'go.mod'); do
echo $f
d=$(dirname "$f")
(cd $d; go mod $operation)
done