Skip to content

Commit

Permalink
pipe stderr
Browse files Browse the repository at this point in the history
  • Loading branch information
toyobayashi committed Apr 2, 2024
1 parent 50fd4ca commit 432a6dd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pylib/gyp/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -451,7 +451,7 @@ def replace_sep(s):
out = subprocess.Popen(
real_cmd,
shell=True,
stdout=subprocess.PIPE, stderr=subprocess.STDOUT
stdout=subprocess.PIPE, stderr=subprocess.PIPE
)
stdout, stderr = out.communicate()
finally:
Expand All @@ -462,7 +462,7 @@ def replace_sep(s):
out = subprocess.Popen(
real_cmd,
shell=False,
stdout=subprocess.PIPE, stderr=subprocess.STDOUT
stdout=subprocess.PIPE, stderr=subprocess.PIPE
)
stdout, stderr = out.communicate()

Expand Down

0 comments on commit 432a6dd

Please sign in to comment.