Skip to content
This repository was archived by the owner on Dec 5, 2024. It is now read-only.

Commit 07a73c1

Browse files
committed
Fix command line command, it was broken with the rewrite
1 parent dcd1356 commit 07a73c1

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/GitHub.Api/OutputProcessors/ProcessManager.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,8 +70,9 @@ public IProcess RunCommandLineWindow(NPath workingDirectory)
7070
};
7171

7272
gitEnvironment.Configure(startInfo, workingDirectory);
73-
var p = new ProcessTask<string>(cancellationToken);
73+
var p = new ProcessTask<string>(cancellationToken, new SimpleOutputProcessor());
7474
p.Configure(startInfo);
75+
p.Start();
7576
return p;
7677
}
7778

0 commit comments

Comments
 (0)