Added Shell=True for windows flow. Fixes file not found error while running in Windows
This commit is contained in:
parent
b7ccf179f1
commit
2dfa782fb9
@ -75,7 +75,8 @@ class ExecProvider(object):
|
||||
stdin=sys.stdin if is_interactive else None,
|
||||
cwd=self.cwd,
|
||||
env=self.env,
|
||||
universal_newlines=True)
|
||||
universal_newlines=True,
|
||||
shell=True)
|
||||
(stdout, stderr) = process.communicate()
|
||||
exit_code = process.wait()
|
||||
if exit_code != 0:
|
||||
|
||||
Loading…
Reference in New Issue
Block a user