mirror of
https://github.com/arsenetar/dupeguru.git
synced 2024-11-05 07:49:02 +00:00
14 lines
322 B
Python
14 lines
322 B
Python
|
#!/usr/bin/env python
|
||
|
|
||
|
import os
|
||
|
|
||
|
print "Generating help"
|
||
|
os.chdir('help')
|
||
|
os.system('python -u gen.py')
|
||
|
os.system('/Developer/Applications/Utilities/Help\\ Indexer.app/Contents/MacOS/Help\\ Indexer dupeguru_me_help')
|
||
|
os.chdir('..')
|
||
|
|
||
|
print "Generating py plugin"
|
||
|
os.chdir('py')
|
||
|
os.system('python -u gen.py')
|
||
|
os.chdir('..')
|