You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
381 B
13 lines
381 B
4 years ago
|
#!/bin/bash
|
||
|
set -e
|
||
|
set -x
|
||
|
|
||
|
if [ ! -d /tmp/build-golang/src/github.com/json-iterator ]; then
|
||
|
mkdir -p /tmp/build-golang/src/github.com/json-iterator
|
||
|
ln -s $PWD /tmp/build-golang/src/github.com/json-iterator/go
|
||
|
fi
|
||
|
export GOPATH=/tmp/build-golang
|
||
|
go get -u github.com/golang/dep/cmd/dep
|
||
|
cd /tmp/build-golang/src/github.com/json-iterator/go
|
||
|
exec $GOPATH/bin/dep ensure -update
|