Mirror von
https://github.com/arsenetar/dupeguru.git
synchronisiert 2025-07-01 21:13:21 +00:00
15 Zeilen
273 B
Python
15 Zeilen
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') |