aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools/bug_chomper/run_server.sh
diff options
context:
space:
mode:
Diffstat (limited to 'tools/bug_chomper/run_server.sh')
-rwxr-xr-xtools/bug_chomper/run_server.sh22
1 files changed, 0 insertions, 22 deletions
diff --git a/tools/bug_chomper/run_server.sh b/tools/bug_chomper/run_server.sh
deleted file mode 100755
index 76518afa73..0000000000
--- a/tools/bug_chomper/run_server.sh
+++ /dev/null
@@ -1,22 +0,0 @@
-if [[ -z `which go` ]]; then
- echo "Please install Go before running the server."
- 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/oauth
-
-DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
-cd $DIR
-
-if [[ ! -f oauth_client_secret.json ]]; then
- gsutil cp gs://chromium-skia-gm/bugchomper/oauth_client_secret.json .
-fi
-
-GOPATH="$GOPATH:$DIR" go run $DIR/src/server/server.go $@