mirror of
https://github.com/m-lamonaca/script-launcher.git
synced 2025-04-05 18:06:28 +00:00
Add error message if no files are found in grouped mode
This commit is contained in:
parent
c5b31e06bc
commit
05e76965fd
1 changed files with 8 additions and 1 deletions
|
@ -1,6 +1,5 @@
|
|||
using System.ComponentModel;
|
||||
using System.Diagnostics;
|
||||
using System.Text;
|
||||
using Cocona;
|
||||
using Spectre.Console;
|
||||
|
||||
|
@ -34,6 +33,14 @@ static async Task RootCommand(
|
|||
if (grouped)
|
||||
{
|
||||
var dict = finder.GetScriptsByDirectory();
|
||||
|
||||
if (dict.Count == 0)
|
||||
{
|
||||
AnsiConsole.Markup($"[red]No scripts script files found in '{finder.RootDirectory}' with extensions '{string.Join(", ", finder.Extensions)}'[/]");
|
||||
Environment.ExitCode = ErrorExitCode;
|
||||
return;
|
||||
}
|
||||
|
||||
var prompt = new SelectionPrompt<DirectoryInfo>()
|
||||
.Title("Select a directory:")
|
||||
.PageSize(ScriptListSize)
|
||||
|
|
Loading…
Add table
Reference in a new issue