Merge pull request #2252 from mitchellh/b-updatedeps

make make updatedeps actually update deps
This commit is contained in:
Chris Bednarski 2015-06-15 10:32:51 -07:00
commit 10bad00a26
1 changed files with 1 additions and 1 deletions

View File

@ -31,7 +31,7 @@ testrace:
go test -race $(TEST) $(TESTARGS)
updatedeps:
go get -d -v -p 2 ./...
go get -u -d -v -p 2 ./...
vet:
@go tool vet 2>/dev/null ; if [ $$? -eq 3 ]; then \