Merge pull request #1486 from roidrage/master

Run two builds in parallel with go get
This commit is contained in:
Mitchell Hashimoto 2014-09-11 19:57:23 -07:00
commit c143e60ffc
1 changed files with 1 additions and 1 deletions

View File

@ -15,6 +15,6 @@ testrace:
go test -race $(TEST) $(TESTARGS)
updatedeps:
go get -u -v ./...
go get -u -v -p 2 ./...
.PHONY: bin default test updatedeps