Files
deb-python-dcos/bin/clean.sh
2015-01-27 18:05:33 -08:00

10 lines
161 B
Bash
Executable File

#!/bin/bash -e
set -o errexit -o nounset -o pipefail
BASEDIR=`dirname $0`/..
rm -rf $BASEDIR/.tox $BASEDIR/env
echo "Deleted virtualenv and test artifacts."