Skip to content

Commit

Permalink
FIX: redirect stdout and stderr, not stdin and stderr (typo)
Browse files Browse the repository at this point in the history
  • Loading branch information
ZLLentz committed Jul 24, 2024
1 parent 94e67c1 commit 71db53a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/ioc_deploy.py
Original file line number Diff line number Diff line change
Expand Up @@ -342,7 +342,7 @@ def _clone(
if working_dir:
kwds["cwd"] = working_dir
if not verbose:
kwds["stdin"] = subprocess.PIPE
kwds["stdout"] = subprocess.PIPE
kwds["stderr"] = subprocess.PIPE
logger.debug(f"Calling '{' '.join(cmd)}' with kwargs {kwds}")
return subprocess.run(cmd, **kwds)
Expand Down

0 comments on commit 71db53a

Please sign in to comment.