mirror of https://github.com/gogits/gogs.git
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.
12 lines
381 B
12 lines
381 B
#!/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
|
|
|