Skip to content

Commit

Permalink
Remove extra newline and update comments in util.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
doublerr committed Oct 20, 2014
1 parent a26aefa commit d513854
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
1 change: 0 additions & 1 deletion build/release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -40,5 +40,4 @@ fi
kube::build::copy_output
kube::build::run_image
kube::release::package_tarballs

kube::release::gcs::release
6 changes: 3 additions & 3 deletions cluster/rackspace/util.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit d513854

Please sign in to comment.