mirror of https://github.com/helm/helm
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
234 B
15 lines
234 B
9 years ago
|
#!/usr/bin/env bash
|
||
|
set -o errexit
|
||
|
set -o pipefail
|
||
|
|
||
|
[[ "$TRACE" ]] && set -x
|
||
|
|
||
|
readonly REPO=github.com/kubernetes/deployment-manager
|
||
|
readonly DIR="${GOPATH}/src/${REPO}"
|
||
|
|
||
|
source "${DIR}/scripts/common.sh"
|
||
|
|
||
|
build_binaries "$@"
|
||
|
|
||
|
exit 0
|