mirror of
https://github.com/arsenetar/dupeguru.git
synced 2024-11-05 07:49:02 +00:00
e9a97afdf8
--HG-- extra : convert_revision : svn%3Ac306627e-7827-47d3-bdf0-9a457c9553a1/trunk%402
15 lines
273 B
Python
15 lines
273 B
Python
#!/usr/bin/env python
|
|
|
|
import os
|
|
import os.path as op
|
|
import shutil
|
|
|
|
print "Cleaning build and dist"
|
|
if op.exists('build'):
|
|
shutil.rmtree('build')
|
|
if op.exists('dist'):
|
|
shutil.rmtree('dist')
|
|
|
|
print "Buiding the py2app plugin"
|
|
|
|
os.system('python -u setup.py py2app') |