mirror of
https://github.com/arsenetar/dupeguru.git
synced 2025-05-08 17:59:50 +00:00
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') |