94 lines
2.2 KiB
Bash
Executable File
94 lines
2.2 KiB
Bash
Executable File
#!/bin/bash
|
|
SCRIPT_NAME="$(basename ${BASH_SOURCE[0]})"
|
|
pushd $(dirname ${BASH_SOURCE[0]}) > /dev/null
|
|
SCRIPT_DIR=$(pwd)
|
|
pushd ../.. > /dev/null
|
|
SOURCE_DIR=$(pwd)
|
|
popd > /dev/null
|
|
pushd ../functions > /dev/null
|
|
FN_DIR=$(pwd)
|
|
popd > /dev/null
|
|
popd > /dev/null
|
|
|
|
source "${SCRIPT_DIR}/functions.sh"
|
|
|
|
function usage {
|
|
cat <<-EOF
|
|
Usage: ${SCRIPT_NAME} [<options ...>]
|
|
|
|
Description:
|
|
|
|
This script will "publish" a Consul release. It expects a prebuilt release in
|
|
pkg/dist matching the version in the repo and a clean git status. It will
|
|
prompt you to confirm the consul version and git changes you are going to
|
|
publish prior to pushing to git and to releases.hashicorp.com.
|
|
|
|
Options:
|
|
-s | --source DIR Path to source to build.
|
|
Defaults to "${SOURCE_DIR}"
|
|
|
|
-w | --website Publish to releases.hashicorp.com
|
|
|
|
-g | --git Push release commit and tag to Git
|
|
|
|
-h | --help Print this help text.
|
|
EOF
|
|
}
|
|
|
|
function err_usage {
|
|
err "$1"
|
|
err ""
|
|
err "$(usage)"
|
|
}
|
|
|
|
function main {
|
|
declare sdir="${SOURCE_DIR}"
|
|
declare -i website=0
|
|
declare -i git_push=0
|
|
|
|
while test $# -gt 0
|
|
do
|
|
case "$1" in
|
|
-h | --help )
|
|
usage
|
|
return 0
|
|
;;
|
|
-s | --source )
|
|
if test -z "$2"
|
|
then
|
|
err_usage "ERROR: option -s/--source requires an argument"
|
|
return 1
|
|
fi
|
|
|
|
if ! test -d "$2"
|
|
then
|
|
err_usage "ERROR: '$2' is not a directory and not suitable for the value of -s/--source"
|
|
return 1
|
|
fi
|
|
|
|
sdir="$2"
|
|
shift 2
|
|
;;
|
|
-w | --website )
|
|
website=1
|
|
shift
|
|
;;
|
|
-g | --git )
|
|
git_push=1
|
|
shift
|
|
;;
|
|
*)
|
|
err_usage "ERROR: Unknown argument: '$1'"
|
|
return 1
|
|
;;
|
|
esac
|
|
done
|
|
|
|
publish_release "${sdir}" "${git_push}" "${website}" || return 1
|
|
|
|
return 0
|
|
}
|
|
|
|
main "$@"
|
|
exit $?
|
|
|