mirror of
https://github.com/not-kennethreitz/requests-async.git
synced 2026-06-05 23:10:17 +00:00
15 lines
226 B
Bash
Executable File
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
|