Actually write bat file this time :)

This commit is contained in:
Joey Payne 2015-11-11 17:09:06 -07:00
commit 1fe84ec38c

View file

@ -952,6 +952,8 @@ class CommandBase(object):
batcontents = '{}\n{}'.format(env_vars, contents)
bat_file = utils.path_join(TEMP_DIR, '{}.bat'.format(self.project_name()))
with open(bat_file, 'w+') as f:
f.write(batcontents)
command = [bat_file]