Skip to content

Commit 3800fe2

Browse files
committed
run-task: don't parse git clean's error output
We were sending stdout and stderr into the same stream and then attempting to parse as if it were a list of paths. That doesn't go awesomely well when there's actual error output mixed in there.
1 parent 75d0a5f commit 3800fe2

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

src/taskgraph/run-task/run-task

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -604,7 +604,6 @@ def _clean_git_checkout(destination_path):
604604
# accurate.
605605
bufsize=0,
606606
stdout=subprocess.PIPE,
607-
stderr=subprocess.STDOUT,
608607
stdin=sys.stdin.fileno(),
609608
cwd=destination_path,
610609
env=os.environ,

0 commit comments

Comments
 (0)