| Index: tools/bug_chomper/run_server.sh
|
| diff --git a/tools/bug_chomper/run_server.sh b/tools/bug_chomper/run_server.sh
|
| index 1a49031f8ef75e43b6bb8fd88cdc3fa33cdc6842..c2d5ad420ce6cb38a03c44f45c4e400ea22698ca 100755
|
| --- a/tools/bug_chomper/run_server.sh
|
| +++ b/tools/bug_chomper/run_server.sh
|
| @@ -3,7 +3,14 @@ if [[ -z `which go` ]]; then
|
| exit 1
|
| fi
|
|
|
| +if [[ -z "$GOPATH" ]]; then
|
| + echo "GOPATH environment variable is not set. Please see"
|
| + echo "http://golang.org/doc/code.html#GOPATH for more information."
|
| + exit 1
|
| +fi
|
| +
|
| go get github.com/gorilla/securecookie
|
| +go get code.google.com/p/goauth2
|
|
|
| DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
| cd $DIR
|
|
|