vendor.sh 414 B

123456789101112131415
  1. #!/usr/bin/env bash
  2. # This file is just wrapper around vndr (github.com/LK4D4/vndr) tool.
  3. # For updating dependencies you should change `vendor.conf` file in root of the
  4. # project. Please refer to https://github.com/LK4D4/vndr/blob/master/README.md for
  5. # vndr usage.
  6. set -e
  7. if ! hash vndr; then
  8. echo "Please install vndr with \"go get github.com/LK4D4/vndr\" and put it in your \$GOPATH"
  9. exit 1
  10. fi
  11. vndr "$@"