starlette/scripts/clean

12 lines
168 B
Plaintext
Raw Normal View History

2018-12-06 10:52:38 +00:00
#!/bin/sh -e
if [ -d 'dist' ] ; then
rm -r dist
fi
if [ -d 'site' ] ; then
rm -r site
fi
if [ -d 'starlette.egg-info' ] ; then
rm -r starlette.egg-info
fi