71b1979e0c
Change-Id: Idce7dfb02cb6a8657f83458c5e20e682b012f348
12 lines
225 B
Bash
Executable File
12 lines
225 B
Bash
Executable File
#!/bin/bash
|
|
|
|
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
|
|
fi
|