mirror of
https://github.com/arsenetar/dupeguru.git
synced 2026-03-18 14:01:37 +00:00
Initial commit.
--HG-- extra : convert_revision : svn%3Ac306627e-7827-47d3-bdf0-9a457c9553a1/trunk%402
This commit is contained in:
15
se/cocoa/py/gen.py
Normal file
15
se/cocoa/py/gen.py
Normal file
@@ -0,0 +1,15 @@
|
||||
#!/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')
|
||||
Reference in New Issue
Block a user