Codebase list golang-github-vbauerster-mpb / 8a6f754
minor: rename to gomodtidyall Vladimir Bauer 1 year, 11 months ago
2 changed file(s) with 9 addition(s) and 9 deletion(s). Raw diff Collapse all Expand all
0 #!/bin/sh
1 set -e
2
3 for d in *; do
4 [ ! -d "$d" ] && continue
5 pushd "$d" >/dev/null 2>&1
6 go mod tidy
7 popd >/dev/null 2>&1
8 done
+0
-9
_examples/gomodtidyall.sh less more
0 #!/bin/sh
1 set -e
2
3 for d in *; do
4 [ ! -d "$d" ] && continue
5 pushd "$d" >/dev/null 2>&1
6 go mod tidy
7 popd >/dev/null 2>&1
8 done