fix: interpolate directory string

This commit is contained in:
Oliver Booth 2024-04-17 19:23:22 +01:00
parent 4e723362ae
commit c77cb1a266
Signed by: oliverbooth
GPG Key ID: E60B570D1B7557B5
1 changed files with 1 additions and 1 deletions

View File

@ -15,7 +15,7 @@ internal sealed class ListCommand : AsyncCommand<ListSettings>
var inputDirectory = new DirectoryInfo(settings.InputPath);
if (!inputDirectory.Exists)
{
AnsiConsole.MarkupLine($"[red]{inputDirectory} does not exist![/]");
AnsiConsole.MarkupLineInterpolated($"[red]{inputDirectory} does not exist![/]");
return -1;
}