Code & Deploy
Code
Code Review
Models
Repos
Toggle menu
Code
Code Review
Models
Repos
Sign in
Sign in
@cryptotaxi247
/
kubo
kubo
/
test
/
dependencies
/
GNUmakefile
Code
Commits
Issues
Pulls
Sessions
CI/CD
master
master
text
16 lines
236 Bytes
Copy permalink
Copy
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