Fixed logic with bat files.

This commit is contained in:
Joey Payne 2015-11-11 16:32:57 -07:00
commit 078189dbbf
2 changed files with 2 additions and 2 deletions

View file

@ -949,7 +949,8 @@ class CommandBase(object):
export_dirs=ex_dir_vars,
**export_dict)
batcontents = '{}{}'.format(env_vars.replace('\n',''), contents.replace('\n', ' & '))
batcontents = batcontents[:-3]
if batcontents.endswith(' & '):
batcontents = batcontents[:-3]
command = ['cmd', '/c', "'" + batcontents + "'"]

View file

@ -975,7 +975,6 @@ class MainWindow(QtGui.QMainWindow, CommandBase):
file_types.append('*.bat')
else:
file_types.append('*.bash')
file_types.append('*.bat')
script_button.clicked.connect(self.call_with_object('get_file_reg', script_button,
self.script_line, script_setting,