ensure go vendoring is enabled before running go install

This commit is contained in:
Paul Bonser 2016-09-27 14:39:58 -05:00
parent 45269de7cc
commit c83171bffe

View File

@ -5,7 +5,7 @@ help:
@echo "- watch: watch for changes and re-run tests"
deps:
glide install && go install github.com/onsi/ginkgo/ginkgo
glide install && GO15VENDOREXPERIMENT=1 go install github.com/onsi/ginkgo/ginkgo
test: deps
ginkgo -race -randomizeAllSpecs -r -skipPackage vendor -progress .