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..bb9e86ef1d0d1284ed6d154219bed56e4f3d380c 100755 |
--- a/tools/bug_chomper/run_server.sh |
+++ b/tools/bug_chomper/run_server.sh |
@@ -3,7 +3,13 @@ if [[ -z `which go` ]]; then |
exit 1 |
fi |
+if [[ -z "$GOPATH" ]]; then |
+ echo "GOPATH environment variable is not set. Please see http://golang.org/doc/code.html#GOPATH for more information." |
scroggo
2014/05/14 15:04:49
nit: more than 100 chars.
Do we have guidelines f
borenet
2014/05/14 15:35:12
Line length is 80chars according to https://google
|
+ 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 |