tobiko/tools/install-bindeps.sh

11 lines
195 B
Bash
Executable File

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