blob: 5bedb4f9ae120f53df61e98585135671ffa17aef [file] [log] [blame]
commit-bot@chromium.org51324612014-05-13 18:03:45 +00001if [[ -z `which go` ]]; then
2 echo "Please install Go before running the server."
3 exit 1
4fi
5
6go get github.com/gorilla/securecookie
7
8DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
9cd $DIR
10GOPATH="$GOPATH:$DIR" go run $DIR/src/server/server.go $@
11