We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6ae8c7c commit 5d30ad0Copy full SHA for 5d30ad0
src/Commands/Command.cs
@@ -204,7 +204,9 @@ private ProcessStartInfo CreateGitStartInfo(bool redirect)
204
205
private void HandleOutput(string line, List<string> errs)
206
{
207
- line ??= string.Empty;
+ if (line == null)
208
+ return;
209
+
210
Log?.AppendLine(line);
211
212
// Lines to hide in error message.
0 commit comments