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.
helm/scripts/build-go.sh

15 lines
234 B

#!/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