httpx/scripts/clean
2019-04-04 13:30:46 +01:00

15 lines
214 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 'httpcore.egg-info' ] ; then
rm -r httpcore.egg-info
fi