Merge "Fix bindeps installation on CentOS"

This commit is contained in:
Zuul 2022-01-21 18:31:51 +00:00 committed by Gerrit Code Review
commit fc7038097d

View File

@ -4,8 +4,9 @@ set -ex
INSTALL_PACKAGE=$(which yum || which apt)
SUDO=$(which sudo || true)
TOX="python3 -m tox"
if ! tox -e bindep ; then
if ! ${TOX} -e bindep ; then
.tox/bindep/bin/bindep -b | xargs -r ${SUDO} "${INSTALL_PACKAGE}" install -y
.tox/bindep/bin/bindep
fi