An Oauth client handler, from abstract

This commit is contained in:
2018-07-25 02:12:13 +02:00
parent 2c3d81b950
commit 3f153eb93a
18 changed files with 710 additions and 649 deletions

View File

@ -18,7 +18,7 @@ namespace Yavsc.Helpers
public static Stream GetStream(StreamReader reader)
{
var procStart = new ProcessStartInfo("/usr/bin/nodejs", "node_modules/ansi-to-html/bin/ansi-to-html");
var procStart = new ProcessStartInfo("node", "node_modules/ansi-to-html/bin/ansi-to-html");
procStart.UseShellExecute = false;
procStart.RedirectStandardInput = true;
procStart.RedirectStandardOutput = true;