Files
deb-python-dcos/bin/clean.sh
José Armando García Sancio ffef1e7743 Cleans the dist directory
2015-02-23 19:40:01 +00:00

10 lines
175 B
Bash
Executable File

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