main: default to GOMAXPROCS=1

This commit is contained in:
Michael Marineau
2015-09-30 17:23:40 -07:00
parent 3b98be7788
commit bf743b3060
2 changed files with 8 additions and 1 deletions

2
test
View File

@@ -31,7 +31,7 @@ gofmt -d -e $SRC
# split SRC into an array and prepend REPO_PATH to each local package for go vet
split_vet=(${SRC// / })
VET_TEST=${split_vet[@]/#/${REPO_PATH}/}
VET_TEST="${REPO_PATH} ${split_vet[@]/#/${REPO_PATH}/}"
echo "Checking govet..."
go vet $VET_TEST