diff --git a/scripts/dist.sh b/scripts/dist.sh index cd7698528d..0dda743303 100755 --- a/scripts/dist.sh +++ b/scripts/dist.sh @@ -4,19 +4,19 @@ set -e # Get the version from the command line VERSION=$1 if [ -z $VERSION ]; then - echo "Please specify a version." - exit 1 + echo "Please specify a version." + exit 1 fi # Make sure we have AWS API keys if ([ -z $AWS_ACCESS_KEY_ID ] || [ -z $AWS_SECRET_ACCESS_KEY ]) && [ ! -z $HC_RELEASE ]; then - echo "Please set your AWS access key information in the AWS_ACCESS_KEY_ID and AWS_SECRET_ACCESS_KEY env vars." - exit 1 + echo "Please set your AWS access key information in the AWS_ACCESS_KEY_ID and AWS_SECRET_ACCESS_KEY env vars." + exit 1 fi if [ -z $NOBUILD ] && [ -z $DOCKER_CROSS_IMAGE ]; then - echo "Please set the Docker cross-compile image in DOCKER_CROSS_IMAGE" - exit 1 + echo "Please set the Docker cross-compile image in DOCKER_CROSS_IMAGE" + exit 1 fi # Get the parent directory of where this script is.