Merge pull request #2900 from dlsniper/go1.5-support

Support go get in go 1.5 (fixes #2893)
This commit is contained in:
Mitchell Hashimoto 2015-07-30 17:35:49 -07:00
commit 207fd3b9dd
1 changed files with 1 additions and 0 deletions

View File

@ -45,6 +45,7 @@ updatedeps:
go list ./... \
| xargs go list -f '{{join .Deps "\n"}}' \
| grep -v github.com/hashicorp/terraform \
| grep -v '/internal/' \
| sort -u \
| xargs go get -f -u -v