Update update deps script

This commit is contained in:
Jeff Mitchell 2019-01-26 18:43:35 -05:00
parent 6ffb167199
commit 6500c3ca0d

View file

@ -30,17 +30,22 @@ govendor init
## Fetch deps
echo "Fetching deps, will take some time..."
govendor fetch +missing
govendor fetch -v +missing
# Clean up after the logrus mess
govendor remove github.com/Sirupsen/logrus
govendor remove -v github.com/Sirupsen/logrus
cd vendor
find -type f | grep '.go' | xargs sed -i -e 's/Sirupsen/sirupsen/'
# Need the v2 branch for Azure
govendor fetch github.com/coreos/go-oidc@v2
govendor fetch -v github.com/coreos/go-oidc@v2
# Need the v3 branch for dockertest
govendor fetch github.com/ory/dockertest@v3
govendor fetch -v github.com/ory/dockertest@v3
# Current influx master is alpha, pin to v1.7.3
govendor fetch github.com/influxdata/influxdb/client/v2@v1.7.3
govendor fetch github.com/influxdata/influxdb/models@v1.7.3
govendor fetch github.com/influxdata/influxdb/pkg/escape@v1.7.3
echo "Done; to commit run \n\ncd ${GOPATH}/src/github.com/hashicorp/${TOOL}\n"