Add scripts/clean

This commit is contained in:
Tom Christie 2019-04-04 13:30:46 +01:00
parent d8497d308e
commit d12e5d49d0

14
scripts/clean Executable file
View File

@ -0,0 +1,14 @@
#!/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 'httpcore.egg-info' ] ; then
rm -r httpcore.egg-info
fi