From: Zooko O'Whielacronx <zooko@zooko.com>
Date: Wed, 17 Nov 2010 09:32:49 +0000 (-0800)
Subject: setup: clean up fake pycryptopp distribution after test-with-fake-dists.py created it
X-Git-Url: https://git.rkrishnan.org/vdrive/%5B/%5D%20/nxhtml.html?a=commitdiff_plain;h=0730d693e8c3af14f3c0a05b27e5d24588575f99;p=tahoe-lafs%2Ftahoe-lafs.git

setup: clean up fake pycryptopp distribution after test-with-fake-dists.py created it
---

diff --git a/misc/build_helpers/clean-up-after-fake-dists.py b/misc/build_helpers/clean-up-after-fake-dists.py
new file mode 100644
index 00000000..a164a9c8
--- /dev/null
+++ b/misc/build_helpers/clean-up-after-fake-dists.py
@@ -0,0 +1,6 @@
+import glob, os, shutil
+
+if os.path.exists('support'):
+    shutil.rmtree('support')
+
+[shutil.rmtree(p) for p in glob.glob('pycryptopp*.egg')]