Browse Source

ensure go vendoring is enabled before running go install

tags/v1.2.2
Paul Bonser 7 years ago
parent
commit
c83171bffe
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      Makefile

+ 1
- 1
Makefile 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 .


Loading…
Cancel
Save