mirror of
https://github.com/saltstack/salt-bootstrap.git
synced 2025-04-16 09:40:21 +00:00
Fix message quotes
This commit is contained in:
parent
5c463f85ac
commit
1d088c8220
1 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue