Moved run templates from root folder to cocoa/qt subfolders.

--HG--
rename : run_template_cocoa.py => cocoa/run_template.py
rename : run_template_qt.py => qt/run_template.py
This commit is contained in:
Virgil Dupras 2012-08-15 07:33:01 -07:00
parent 1c15b0114b
commit 8ac035c8a9
3 changed files with 2 additions and 2 deletions

View File

@ -127,7 +127,7 @@ def build_cocoa(edition, dev):
app.copy_resources(*resources, use_symlinks=dev)
app.copy_frameworks('build/Python', 'cocoalib/Sparkle.framework')
print("Creating the run.py file")
tmpl = open('run_template_cocoa.py', 'rt').read()
tmpl = open('cocoa/run_template.py', 'rt').read()
run_contents = tmpl.replace('{{app_path}}', app.dest)
open('run.py', 'wt').write(run_contents)
@ -138,7 +138,7 @@ def build_qt(edition, dev):
print_and_do("pyrcc4 -py3 {0} > {1}".format(op.join('qt', 'base', 'dg.qrc'), op.join('qt', 'base', 'dg_rc.py')))
fix_qt_resource_file(op.join('qt', 'base', 'dg_rc.py'))
print("Creating the run.py file")
tmpl = open('run_template_qt.py', 'rt').read()
tmpl = open(op.join('qt', 'run_template.py'), 'rt').read()
run_contents = tmpl.replace('{{edition}}', edition)
open('run.py', 'wt').write(run_contents)