Skip to content

Commit

Permalink
In some cases /showIncludes option emits dependencies to stdout, not …
Browse files Browse the repository at this point in the history
  • Loading branch information
17451k committed Sep 25, 2019
1 parent 8676d3a commit 8bebec5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion clade/extensions/cl.py
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ def __collect_deps(self, cmd_id, cmd, cmd_in):
with open(deps_file, "wb") as deps_fh:
proc = subprocess.Popen(
deps_cmd,
stdout=subprocess.DEVNULL,
stdout=deps_fh,
stderr=deps_fh,
cwd=cmd["cwd"],
shell=True,
Expand Down

2 comments on commit 8bebec5

@eunovm
Copy link
Collaborator

@eunovm eunovm commented on 8bebec5 Sep 26, 2019

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Microsoft can do everything.

@17451k
Copy link
Owner Author

@17451k 17451k commented on 8bebec5 Sep 26, 2019

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Indeed.

Please sign in to comment.