mirror of
https://github.com/kubernetes-sigs/kustomize.git
synced 2026-05-17 18:25:26 +00:00
11 lines
197 B
Bash
Executable File
11 lines
197 B
Bash
Executable File
# Usage: From repo root:
|
|
# ./hack/doGoMod.sh tidy
|
|
# ./hack/doGoMod.sh verify
|
|
|
|
operation=$1
|
|
for f in $(find ./ -name 'go.mod'); do
|
|
echo $f
|
|
d=$(dirname "$f")
|
|
(cd $d; go mod $operation)
|
|
done
|