Add scripts/clean
This commit is contained in:
parent
d8497d308e
commit
d12e5d49d0
14
scripts/clean
Executable file
14
scripts/clean
Executable 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
|
||||
Loading…
Reference in New Issue
Block a user