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

Tree @e3ce0bf (Download .tar.gz)

gomodtidyall.sh @e3ce0bfraw · history · blame

1
2
3
4
5
6
7
8
#!/bin/sh

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