master
text 16 lines 236 Bytes
Raw
1
2 all: restore
3
4 restore:
5 @echo "*** $@ ***"
6 which godep
7 mkdir -p tmp_gopath
8 OLD_GOPATH="$$GOPATH"
9 export GOPATH=$$(pwd)/tmp_gopath
10 cd ../..
11 godep restore
12 cd -
13 rm -rf tmp_gopath
14 export GOPATH="$$OLD_GOPATH"
15
16 .PHONY: all restore