Merge pull request #2289 from PranoyD/master

Added Shell=True for windows flow. Fixes file not found error while r…
This commit is contained in:
Kubernetes Prow Robot 2024-10-09 22:44:23 +01:00 committed by GitHub
commit f414832bb0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

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