Fix install-bindeps.sh to work without sudo

Change-Id: Idce7dfb02cb6a8657f83458c5e20e682b012f348
This commit is contained in:
Federico Ressi 2021-04-08 12:26:42 +02:00
parent e18d15f4e4
commit 71b1979e0c
1 changed files with 2 additions and 1 deletions

View File

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