2015-11-03 21:28:40 -08:00
|
|
|
dep-save:
|
|
|
|
|
$(if $(GODEP), , \
|
|
|
|
|
$(error Please install godep: go get github.com/tools/godep))
|
2015-11-14 15:54:31 +09:00
|
|
|
$(GODEP) save $(shell go list ./... | grep -v vendor/)
|
2015-11-03 21:28:40 -08:00
|
|
|
|
|
|
|
|
dep-restore:
|
|
|
|
|
$(if $(GODEP), , \
|
|
|
|
|
$(error Please install godep: go get github.com/tools/godep))
|
2015-11-14 15:54:31 +09:00
|
|
|
$(GODEP) restore -v
|