Skip to content

Commit

Permalink
v2.1.0 extension.yaml update
Browse files Browse the repository at this point in the history
  • Loading branch information
SparrowBrain committed Sep 1, 2024
1 parent 681786e commit 57de86b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion GGDeals/extension.yaml
Original file line number Diff line number Diff line change
@@ -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
Expand Down
3 changes: 2 additions & 1 deletion ReleaseTools/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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))
Expand Down

0 comments on commit 57de86b

Please sign in to comment.