You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

update-vendor.sh 155 B

1234567891011
  1. #!/usr/bin/env bash
  2. set -o errexit
  3. set -o nounset
  4. set -o pipefail
  5. echo "running 'go mod tidy'"
  6. go mod tidy
  7. echo "running 'go mod vendor'"
  8. go mod vendor