mirror of
https://github.com/saltstack/salt-bootstrap.git
synced 2025-04-17 10:10:25 +00:00
fix if statement
This commit is contained in:
parent
10ea818d62
commit
42431a37c4
1 changed files with 1 additions and 1 deletions
|
@ -3717,7 +3717,7 @@ install_centos_git_deps() {
|
|||
__PACKAGES="${__PACKAGES} python-libcloud"
|
||||
fi
|
||||
|
||||
if [ "${_INSTALL_PY:='None'}" -eq "${BS_TRUE}" ]; then
|
||||
if [ "${_INSTALL_PY:='None'}" == "${BS_TRUE}" ]; then
|
||||
__install_python_and_deps || return 1
|
||||
else
|
||||
# shellcheck disable=SC2086
|
||||
|
|
Loading…
Add table
Reference in a new issue