Codebase list golang-github-vbauerster-mpb / 675a6a2 _examples / gomodtidyall.sh
675a6a2

Tree @675a6a2 (Download .tar.gz)

gomodtidyall.sh @675a6a2raw · history · blame

1
2
3
4
5
6
7
8
9
#!/bin/sh
set -e

for d in *; do
    [ ! -d "$d" ] && continue
    pushd "$d" >/dev/null 2>&1
    go mod tidy
    popd >/dev/null 2>&1
done