]> git.rkrishnan.org Git - tahoe-lafs/tahoe-lafs.git/blob - misc/build_helpers/clean-up-after-fake-dists.py
setup: clean up fake pycryptopp distribution after test-with-fake-dists.py created it
[tahoe-lafs/tahoe-lafs.git] / misc / build_helpers / clean-up-after-fake-dists.py
1 import glob, os, shutil
2
3 if os.path.exists('support'):
4     shutil.rmtree('support')
5
6 [shutil.rmtree(p) for p in glob.glob('pycryptopp*.egg')]