Skip to content

Commit

Permalink
shorten interactive prompt (#455)
Browse files Browse the repository at this point in the history
  • Loading branch information
ChristopherHX authored Dec 1, 2024
1 parent d07ae4d commit f02a3d3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Runner.Client/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1458,13 +1458,13 @@ await Task.WhenAny(Task.Run(() => {
parameters.List = false;
parameters.Job = null;
parameters.Matrix = null;
Console.Write("gharun> ");
Console.Write(">");
try {
command = await Task.Run(() => Console.In.ReadLineAsync()).WithCancellation(source.Token);
} catch {
command = "";
}
var interactiveCommand = new Command("gharun>");
var interactiveCommand = new Command(">");
var runCommand = new Command("run", "Create a new run, this is the default action of this tool");
runCommand.Add(jobOpt);
runCommand.Add(matrixOpt);
Expand Down

0 comments on commit f02a3d3

Please sign in to comment.