Fix typos in user-facing strings

This commit is contained in:
Andrew Seidl
2015-01-18 01:32:34 -06:00
parent eeb712d163
commit 6dee1d7fa4
17 changed files with 26 additions and 26 deletions

View File

@@ -145,7 +145,7 @@ function upload-server-tars() {
echo "==> SERVER_BINARY_TAR_URL: $SERVER_BINARY_TAR_URL"
echo "==> SALT_TAR_URL: $SALT_TAR_URL"
echo "--> Checking storage exsists..."
echo "--> Checking storage exists..."
if [[ -z "$(azure_call storage account show $AZ_STG 2>/dev/null | \
grep data)" ]]; then
echo "--> Creating storage..."
@@ -156,7 +156,7 @@ function upload-server-tars() {
stg_key=$(azure_call storage account keys list $AZ_STG --json | \
json_val '["primaryKey"]')
echo "--> Checking storage container exsists..."
echo "--> Checking storage container exists..."
if [[ -z "$(azure_call storage container show -a $AZ_STG -k "$stg_key" \
$CONTAINER 2>/dev/null | grep data)" ]]; then
echo "--> Creating storage container..."
@@ -409,7 +409,7 @@ function kube-up {
$AZ_CS $AZ_IMAGE $USER
done
echo "--> Createing endpoint"
echo "--> Creating endpoint"
azure_call vm endpoint create $MASTER_NAME 443
detect-master > /dev/null
@@ -572,4 +572,4 @@ function setup-logging {
function teardown-logging {
echo "TODO: teardown logging"
}
}