Skip to content

Commit

Permalink
Don't redirect output.
Browse files Browse the repository at this point in the history
  • Loading branch information
ffMathy committed Feb 25, 2023
1 parent af86567 commit 44cabb4
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/FluffySpoon.Ngrok/NgrokProcess.cs
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,10 @@ private ProcessStartInfo GetProcessStartInfo()
CreateNoWindow = true,
WindowStyle = GetProcessWindowStyle(),
UseShellExecute = RuntimeInformation.IsOSPlatform(OSPlatform.Windows),
WorkingDirectory = Environment.CurrentDirectory
WorkingDirectory = Environment.CurrentDirectory,
RedirectStandardError = false,
RedirectStandardOutput = false,
RedirectStandardInput = false
};
return processStartInfo;
}
Expand Down

0 comments on commit 44cabb4

Please sign in to comment.