]>
git.saurik.com Git - wxWidgets.git/blob - wxPython/scripts/CreateBatchFiles.py
1 #----------------------------------------------------------------------
2 # Name: CreateBatchFiles.py
3 # Purpose: Run by the InnoSetup installer to create a DOS batch
4 # file for each of the wxPython tool scripts.
9 # Copyright: (c) 2002 by Total Control Software
10 # Licence: wxWindows license
11 #----------------------------------------------------------------------
15 python
= sys
.executable
16 scriptdir
= os
.getcwd()
18 scripts
= [ "img2png",
26 %(python)s %(scriptdir)s\\%(script)s %%1 %%2 %%3 %%4 %%5 %%6 %%7 %%8 %%9
29 for script
in scripts
:
30 batfile
= os
.path
.join(scriptdir
, script
+ '.bat')
31 print "Creating", batfile
32 f
= open(batfile
, 'w')
33 f
.write(template
% vars())