ipld-eth-server/vendor/github.com/ipfs/go-ipfs/test/dependencies/Makefile
2019-12-02 13:24:46 -06:00

17 lines
236 B
Makefile

all: restore
restore:
@echo "*** $@ ***"
which godep
mkdir -p tmp_gopath
OLD_GOPATH="$$GOPATH"
export GOPATH=$$(pwd)/tmp_gopath
cd ../..
godep restore
cd -
rm -rf tmp_gopath
export GOPATH="$$OLD_GOPATH"
.PHONY: all restore