We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c9bb9dd commit 022f84dCopy full SHA for 022f84d
command_line.py
@@ -1,6 +1,6 @@
1
'''Command line module for web2exe.'''
2
3
-__version__ = "v0.2.9b"
+__version__ = "v0.3.0b"
4
5
import ssl
6
@@ -966,6 +966,9 @@ def run_script(self, script):
966
batcontents = '{}\n{}'.format(env_vars, contents)
967
968
bat_file = utils.path_join(TEMP_DIR, '{}.bat'.format(self.project_name()))
969
+
970
+ self.logger.debug(batcontents)
971
972
with open(bat_file, 'w+') as f:
973
f.write(batcontents)
974
@@ -984,8 +987,6 @@ def run_script(self, script):
984
987
if error:
985
988
f.write('\n\nErrors:\n{}\n'.format(error))
986
989
-
990
self.progress_text = 'Done executing script.'
991
else:
992
self.progress_text = '\nThe script {} does not exist. Not running.'.format(script)
0 commit comments