From: Tom Christie Date: Thu, 4 Apr 2019 12:30:46 +0000 (+0100) Subject: Add scripts/clean X-Git-Tag: 0.0.1~4 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d12e5d49d09f87b318d7dd85a19b561b89123bbb;p=thirdparty%2Fhttpx.git Add scripts/clean --- diff --git a/scripts/clean b/scripts/clean new file mode 100755 index 00000000..3a639f5e --- /dev/null +++ b/scripts/clean @@ -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