Skip to content

gomod: go get -u -t ./...

Administrator requested to merge k/gomod into main

Created by: keegancsmith

Actually ran it over all our submodules:

  find . -name go.mod -exec dirname '{}' \; | while read -r d; do
    pushd $d;
    go get -u -t ./...;
    go mod tidy;
    popd;
  done

Merge request reports

Loading