]> git.ipfire.org Git - thirdparty/httpx.git/commitdiff
Add scripts/clean
authorTom Christie <tom@tomchristie.com>
Thu, 4 Apr 2019 12:30:46 +0000 (13:30 +0100)
committerTom Christie <tom@tomchristie.com>
Thu, 4 Apr 2019 12:30:46 +0000 (13:30 +0100)
scripts/clean [new file with mode: 0755]

diff --git a/scripts/clean b/scripts/clean
new file mode 100755 (executable)
index 0000000..3a639f5
--- /dev/null
@@ -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