Files
deb-python-ceilometerclient/tools/with_venv.sh
Angus Salkeld 098f944eda Initial Commit
Signed-off-by: Angus Salkeld <asalkeld@redhat.com>
2012-11-09 12:52:21 +11:00

11 lines
195 B
Bash
Executable File

#!/bin/bash
command -v tox > /dev/null 2>&1
if [ $? -ne 0 ]; then
echo 'This script requires "tox" to run.'
echo 'You can install it with "pip install tox".'
exit 1;
fi
tox -evenv -- $@