From c77cb1a266dc393b3f1ebb0620d94ffe2fc22547 Mon Sep 17 00:00:00 2001 From: Oliver Booth Date: Wed, 17 Apr 2024 19:23:22 +0100 Subject: [PATCH] fix: interpolate directory string --- FindDuplicates/ListCommand.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FindDuplicates/ListCommand.cs b/FindDuplicates/ListCommand.cs index cfbe542..ad2315f 100644 --- a/FindDuplicates/ListCommand.cs +++ b/FindDuplicates/ListCommand.cs @@ -15,7 +15,7 @@ internal sealed class ListCommand : AsyncCommand 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; }