diff --git a/GGDeals/extension.yaml b/GGDeals/extension.yaml index b536a85..cef84b5 100644 --- a/GGDeals/extension.yaml +++ b/GGDeals/extension.yaml @@ -1,7 +1,7 @@ Id: SparrowBrain_GGDeals Name: GG.deals Author: SparrowBrain -Version: 2.0.0 +Version: 2.1.0 Module: GGDeals.dll Type: GenericPlugin Icon: icon.png diff --git a/ReleaseTools/Program.cs b/ReleaseTools/Program.cs index cc133ce..d1b6561 100644 --- a/ReleaseTools/Program.cs +++ b/ReleaseTools/Program.cs @@ -55,10 +55,11 @@ private static async Task EnsureGitHubAuthentication() var p = new Process(); p.StartInfo.UseShellExecute = false; p.StartInfo.RedirectStandardError = true; + p.StartInfo.RedirectStandardOutput = true; p.StartInfo.FileName = "gh"; p.StartInfo.Arguments = "auth status"; p.Start(); - var output = await p.StandardError.ReadToEndAsync(); + var output = await p.StandardOutput.ReadToEndAsync(); p.WaitForExit(); if (!authStatusParser.IsUserLoggedIn(output))