Remove extra newline and update comments in util.sh

(cherry picked from commit d513854851)
This commit is contained in:
Ryan Richard
2014-10-20 12:18:34 -05:00
committed by Joe Beda
parent b35513a323
commit 41521df489
2 changed files with 3 additions and 4 deletions

View File

@@ -40,5 +40,4 @@ fi
kube::build::copy_output
kube::build::run_image
kube::release::package_tarballs
kube::release::gcs::release

View File

@@ -31,19 +31,19 @@ verify-prereqs() {
done
if [[ -z "${OS_AUTH_URL-}" ]]; then
echo "build/common.sh: OS_AUTH_URL not set."
echo "cluster/rackspace/util.sh: OS_AUTH_URL not set."
echo -e "\texport OS_AUTH_URL=https://identity.api.rackspacecloud.com/v2.0/"
return 1
fi
if [[ -z "${OS_USERNAME-}" ]]; then
echo "build/common.sh: OS_USERNAME not set."
echo "cluster/rackspace/util.sh: OS_USERNAME not set."
echo -e "\texport OS_USERNAME=myusername"
return 1
fi
if [[ -z "${OS_PASSWORD-}" ]]; then
echo "build/common.sh: OS_PASSWORD not set."
echo "cluster/rackspace/util.sh: OS_PASSWORD not set."
echo -e "\texport OS_PASSWORD=myapikey"
return 1
fi