Whitespacing

This commit is contained in:
Jeff Mitchell
2016-06-30 14:18:14 -04:00
parent c4c948ff64
commit 8545851f3d

View File

@@ -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.