3 # This script builds a Keep executable and installs it in
6 # In idiomatic Go style, a user would install Keep with something
9 # go get arvados.org/keep
10 # go install arvados.org/keep
12 # which would download both the Keep source and any third-party
13 # packages it depends on.
15 # Since the Keep source is bundled within the overall Arvados source,
16 # "go get" is not the primary tool for delivering Keep source and this
17 # process doesn't work. Instead, this script sets the environment
18 # properly and fetches any necessary dependencies by hand.
24 GOPATH=$(pwd):${GOPATH}
29 set -o errexit # fail if any command returns an error
33 go get github.com/gorilla/mux