|
dep-save:
|
|
$(if $(GODEP), , \
|
|
$(error Please install godep: go get github.com/tools/godep))
|
|
$(GODEP) save $(shell go list ./... | grep -v vendor/)
|
|
|
|
dep-restore:
|
|
$(if $(GODEP), , \
|
|
$(error Please install godep: go get github.com/tools/godep))
|
|
$(GODEP) restore -v
|