tobiko/tools/install-bindeps.sh
Federico Ressi 7d7ee9691f Fix bindeps installation on CentOS
Change-Id: I55d2dcc3652543d221b5c60967bff148fa98505e
2022-01-21 14:36:34 +00:00

13 lines
249 B
Bash
Executable File

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