Skip to content

Commit

Permalink
fix: Remove debug args
Browse files Browse the repository at this point in the history
  • Loading branch information
gnios committed Nov 21, 2024
1 parent da423b3 commit 5e0b6b8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Gnios.Cli/ConsoleApplication.cs
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ public async Task<int> Run(string[] args)
new AzureDevopsRootCommand(_appConfig)
};

string[] debugArgs = {"devops","search", "-vg", "MyVariableGroup", "-vn", "MyVariableName"};
return await rootCommand.InvokeAsync(debugArgs);
// string[] debugArgs = {"devops","search", "-vg", "MyVariableGroup", "-vn", "MyVariableName"};
// return await rootCommand.InvokeAsync(debugArgs);
return await rootCommand.InvokeAsync(args);
}
}

0 comments on commit 5e0b6b8

Please sign in to comment.