mirror of
https://github.com/featurebasedb/featurebase.git
synced 2026-08-28 02:44:59 +00:00
This commit re-adds the `testdata` folder that godeps strips and also updates the `Makefile` to add a `vendor` target that will handle this in the future.
7 lines
160 B
Makefile
7 lines
160 B
Makefile
.PHONY: vendor
|
|
|
|
default:
|
|
|
|
vendor:
|
|
godep save ./...
|
|
cp -r $(GOPATH)/src/github.com/gogo/protobuf/proto/testdata vendor/github.com/gogo/protobuf/proto/testdata
|