8000 Merge pull request #2289 from PranoyD/master · kubernetes-client/python@f414832 · GitHub
[go: up one dir, main page]

Skip to content

Commit f414832

Browse files
authored
Merge pull request #2289 from PranoyD/master
Added Shell=True for windows flow. Fixes file not found error while r…
2 parents b7ccf17 + 2dfa782 commit f414832

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

kubernetes/base/config/exec_provider.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,8 @@ def run(self, previous_response=None):
7575
stdin=sys.stdin if is_interactive else None,
7676
cwd=self.cwd,
7777
env=self.env,
78-
universal_newlines=True)
78+
universal_newlines=True,
79+
shell=True)
7980
(stdout, stderr) = process.communicate()
8081
exit_code = process.wait()
8182
if exit_code != 0:

0 commit comments

Comments
 (0)
0