Skip to content

Commit

Permalink
> This should reference the USERPROFILE environment variable instead …
Browse files Browse the repository at this point in the history
…of your specific user path
  • Loading branch information
stephengillie committed Mar 28, 2024
1 parent 5de9fbd commit 50f0f61
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Tools/ManualValidationPipeline.cs
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@
namespace WinGetApprovalNamespace {
public class WinGetApprovalPipeline : Form {
//vars
public int build = 553;//Get-RebuildPipeApp
public int build = 554;//Get-RebuildPipeApp
public string appName = "WinGetApprovalPipeline";
public string appTitle = "WinGet Approval Pipeline - Build ";
public static string owner = "microsoft";
Expand Down Expand Up @@ -153,7 +153,7 @@ public class WinGetApprovalPipeline : Form {
public Regex regex_hashPRRegexEnd = new Regex(@string_hashPRRegexEnd);
public Regex regex_colonPRRegex = new Regex(@string_colonPRRegex);

public string file_GitHubToken = "C:\\Users\\Stephen.Gillie\\Documents\\PowerShell\\ght.txt";
public string file_GitHubToken = Environment.GetFolderPath(Environment.SpecialFolder.UserProfile) + "\\Documents\\PowerShell\\ght.txt";
public string GitHubToken;
public bool TokenLoaded = false;
public int GitHubRateLimitDelay = 333;
Expand Down

0 comments on commit 50f0f61

Please sign in to comment.