* Start fleshing out documentation * Docs work * http3 * Update docs * Include lowercase status codes, for requests compat * Updating docs * Docs tweaks
15 lines
208 B
Bash
Executable File
15 lines
208 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 'http3.egg-info' ] ; then
|
|
rm -r http3.egg-info
|
|
fi
|