69ea632d3e
Change-Id: I1fd2e966863908751ab5cba685e99c1ddf07b582
11 lines
190 B
Bash
Executable File
11 lines
190 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 "${INSTALL_PACKAGE}" install -y
|
|
.tox/bindep/bin/bindep
|
|
fi
|