From 1d088c8220660fefa48bd48cad8fbc9bb468b950 Mon Sep 17 00:00:00 2001 From: Pedro Algarvio Date: Wed, 19 Feb 2014 11:06:42 +0000 Subject: [PATCH] Fix message quotes --- bootstrap-salt.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bootstrap-salt.sh b/bootstrap-salt.sh index e30218d..21fed5f 100755 --- a/bootstrap-salt.sh +++ b/bootstrap-salt.sh @@ -107,13 +107,13 @@ echodebug() { #---------------------------------------------------------------------------------------------------------------------- check_pip_allowed() { if [ $# -eq 1 ]; then - _PIP_ALLOWED_ERROR_MSG="$1" + _PIP_ALLOWED_ERROR_MSG=$1 else _PIP_ALLOWED_ERROR_MSG="pip based installations were not allowed. Retry using '-P'" fi if [ $_PIP_ALLOWED -eq $BS_FALSE ]; then - echoerror $_PIP_ALLOWED_ERROR_MSG + echoerror "$_PIP_ALLOWED_ERROR_MSG" usage exit 1 fi