mirror of
https://github.com/saltstack/salt-bootstrap.git
synced 2025-04-16 09:40:21 +00:00
fix pip check logic (#807)
This commit is contained in:
parent
41e92a3128
commit
b2b315bf09
1 changed files with 1 additions and 1 deletions
|
@ -1966,7 +1966,7 @@ __install_pip_deps() {
|
|||
# Install virtualenv to system pip before activating virtualenv if thats going to be used
|
||||
# We assume pip pkg is installed since that is distro specific
|
||||
if [ "$_VIRTUALENV_DIR" != "null" ]; then
|
||||
if __check_command_exists pip; then
|
||||
if ! __check_command_exists pip; then
|
||||
echoerror "Pip not installed: required for -a installs"
|
||||
exit 1
|
||||
fi
|
||||
|
|
Loading…
Add table
Reference in a new issue