Update updatedeps

This commit is contained in:
Mitchell Hashimoto 2015-06-15 13:50:01 -07:00
parent a1f1834789
commit 6f7818980c
1 changed files with 7 additions and 1 deletions

View File

@ -31,7 +31,13 @@ testrace:
go test -race $(TEST) $(TESTARGS)
updatedeps:
go get -u -d -v -p 2 ./...
go get -u github.com/mitchellh/gox
go get -u golang.org/x/tools/cmd/stringer
go list ./... \
| xargs go list -f '{{join .Deps "\n"}}' \
| grep -v github.com/mitchellh/packer \
| sort -u \
| xargs go get -f -u -v
vet:
@go tool vet 2>/dev/null ; if [ $$? -eq 3 ]; then \