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): |