Files
Tom Christie 66be821d13 Initial commit
2019-03-21 11:26:42 +00:00

15 lines
226 B
Bash
Executable File

#!/bin/sh -e
if [ -d 'dist' ] ; then
rm -r dist
fi
if [ -d 'site' ] ; then
rm -r site
fi
if [ -d 'htmlcov' ] ; then
rm -r htmlcov
fi
if [ -d 'requests_async.egg-info' ] ; then
rm -r requests_async.egg-info
fi