github.com/lestrrat-go/jwx/v2@v2.0.21/scripts/tidy.sh (about)

     1  #!/bin/bash
     2  
     3  for dir in $(find . -name 'go.mod' | perl -pe 's{/go.mod$}{}'); do
     4  	pushd "$dir"
     5  	go mod tidy
     6  	popd
     7  done