1
0
mirror of https://github.com/arsenetar/dupeguru.git synced 2024-10-19 00:55:58 +00:00
dupeguru/me/cocoa/py/gen.py

14 lines
248 B
Python
Raw Normal View History

#!/usr/bin/env python
import os
import os.path as op
import shutil
from hsutil.build import print_and_do
if op.exists('build'):
shutil.rmtree('build')
if op.exists('dist'):
shutil.rmtree('dist')
print_and_do('python -u setup.py py2app')