PluginCxFreeze.py

changeset 22
b03d3d52f900
parent 21
de49f07bb6bf
child 24
4c8a4e5377c6
equal deleted inserted replaced
21:de49f07bb6bf 22:b03d3d52f900
72 Restricted function to determine the name of the executable. 72 Restricted function to determine the name of the executable.
73 73
74 @return name of the executable (string) 74 @return name of the executable (string)
75 """ 75 """
76 # step 1: check for version 4.x 76 # step 1: check for version 4.x
77 ## exe = 'cxfreeze' 77 if Utilities.isWindowsPlatform():
78 if sys.platform == "win32":
79 ## exe += '.bat'
80 ## if Utilities.isinpath(exe):
81 ## return exe
82 # 78 #
83 # Windows 79 # Windows
84 # 80 #
85 exe = 'cxfreeze.bat' 81 exe = 'cxfreeze.bat'
86 if Utilities.isinpath(exe): 82 if Utilities.isinpath(exe):

eric ide

mercurial