Remove extra newline and update comments in util.sh

This commit is contained in:
Ryan Richard 2014-10-20 12:18:34 -05:00
parent a26aefaa2e
commit d513854851
2 changed files with 3 additions and 4 deletions

View File

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

View File

@ -31,19 +31,19 @@ verify-prereqs() {
done done
if [[ -z "${OS_AUTH_URL-}" ]]; then 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/" echo -e "\texport OS_AUTH_URL=https://identity.api.rackspacecloud.com/v2.0/"
return 1 return 1
fi fi
if [[ -z "${OS_USERNAME-}" ]]; then 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" echo -e "\texport OS_USERNAME=myusername"
return 1 return 1
fi fi
if [[ -z "${OS_PASSWORD-}" ]]; then 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" echo -e "\texport OS_PASSWORD=myapikey"
return 1 return 1
fi fi