Fix message quotes

This commit is contained in:
Pedro Algarvio 2014-02-19 11:06:42 +00:00
parent 5c463f85ac
commit 1d088c8220

View file

@ -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