Compare commits

...

2 Commits

Author SHA1 Message Date
Paul Bonser
af88487cbf Make ginkgo build from vendor dir work 2016-09-27 15:07:10 -05:00
Paul Bonser
d2dac441cb figure out what dir we are in 2016-09-27 15:00:00 -05:00
2 changed files with 2 additions and 1 deletions

View File

@ -27,4 +27,5 @@ install:
- go get github.com/Masterminds/glide
script:
- pwd
- make test

View File

@ -5,7 +5,7 @@ help:
@echo "- watch: watch for changes and re-run tests"
deps:
glide install && mkdir -p vendor/bin && go build -o vendor/bin/ginkgo github.com/onsi/ginkgo/ginkgo
glide install && mkdir -p vendor/bin && go build -o vendor/bin/ginkgo ./vendor/github.com/onsi/ginkgo/ginkgo
test: deps