mirror of
https://github.com/tahoe-lafs/tahoe-lafs.git
synced 2024-12-19 13:07:56 +00:00
7 lines
142 B
Python
7 lines
142 B
Python
import glob, os, shutil
|
|
|
|
if os.path.exists('support'):
|
|
shutil.rmtree('support')
|
|
|
|
[shutil.rmtree(p) for p in glob.glob('pycryptopp*.egg')]
|