-
Notifications
You must be signed in to change notification settings - Fork 4.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
7 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -44,11 +44,14 @@ govendor fetch -v github.com/coreos/go-oidc@v2 | |
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/[email protected].3 | ||
govendor fetch github.com/influxdata/influxdb/[email protected].3 | ||
govendor fetch github.com/influxdata/influxdb/pkg/[email protected].3 | ||
govendor fetch github.com/influxdata/influxdb/client/[email protected].4 | ||
govendor fetch github.com/influxdata/influxdb/[email protected].4 | ||
govendor fetch github.com/influxdata/influxdb/pkg/[email protected].4 | ||
|
||
# Current circonus needs v3 | ||
grep circonus-gometrics vendor/vendor.json | cut -d '"' -f 4 | while read -r i; do govendor fetch $i@v2; done | ||
grep circonus-gometrics vendor.json | cut -d '"' -f 4 | while read -r i; do govendor fetch $i@v2; done | ||
|
||
# API breakage | ||
govendor fetch github.com/satori/go.uuid@f58768cc1a7a7e77a3bd49e98cdd21419399b6a3 | ||
|
||
echo "Done; to commit run \n\ncd ${GOPATH}/src/github.com/hashicorp/${TOOL}\n" |