Skip to content

Commit 3fd5b44

Browse files
committed
Don't show output from dotnet-stop
Fixes #3
1 parent 3635d72 commit 3fd5b44

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/dotnet-evergreen/Application.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ public Process Start(ProcessStartInfo start, CancellationTokenSource cancellatio
3939
try
4040
{
4141
if (!process.HasExited &&
42-
Process.Start(new ProcessStartInfo(DotnetMuxer.Path!.FullName, $"stop {process.Id} -t 2000")
42+
Process.Start(new ProcessStartInfo(DotnetMuxer.Path!.FullName, $"stop {process.Id} -t 2000 -q")
4343
{
4444
// Avoid the output of the dotnet-stop tool from polluting ours, since we'll kill the
4545
// process if it doesn't exit cleanly anyway and we're getting output from it already.

0 commit comments

Comments
 (0)