Skip to content

Commit

Permalink
Merge pull request kubernetes-client#2289 from PranoyD/master
Browse files Browse the repository at this point in the history
Added Shell=True for windows flow. Fixes file not found error while r…
  • Loading branch information
k8s-ci-robot authored Oct 9, 2024
2 parents b7ccf17 + 2dfa782 commit f414832
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion kubernetes/base/config/exec_provider.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,8 @@ def run(self, previous_response=None):
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:
Expand Down

0 comments on commit f414832

Please sign in to comment.