f530416164
Change-Id: I1d6152924cffa168ad3199cf97506ac597257e45
11 lines
188 B
Bash
Executable File
11 lines
188 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -ex
|
|
|
|
INSTALL_PACKAGE=$(which yum || which apt)
|
|
|
|
if ! tox -e bindep ; then
|
|
.tox/bindep/bin/bindep -b | xargs -r "${INSTALL_PACKAGE}" install -y
|
|
.tox/bindep/bin/bindep
|
|
fi
|