Skip to content

Commit 230efb6

Browse files
Do not merge information stream into output
Fixes #1667
1 parent e4946a8 commit 230efb6

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

src/PowerShellEditorServices/Utility/PSCommandExtensions.cs

-1
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,6 @@ public static PSCommand MergePipelineResults(this PSCommand psCommand)
6666
// We need to do merge errors and output before rendering with an Out- cmdlet
6767
Command lastCommand = psCommand.Commands[psCommand.Commands.Count - 1];
6868
lastCommand.MergeMyResults(PipelineResultTypes.Error, PipelineResultTypes.Output);
69-
lastCommand.MergeMyResults(PipelineResultTypes.Information, PipelineResultTypes.Output);
7069
}
7170
return psCommand;
7271
}

0 commit comments

Comments
 (0)