From d41a0045cb8e9574d268c2edb5acdec52d1c14ff Mon Sep 17 00:00:00 2001 From: Matt Nadareski Date: Thu, 9 May 2024 21:54:30 -0400 Subject: [PATCH] Fix input paths for test program --- Test/Program.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Test/Program.cs b/Test/Program.cs index 5743b148..8de58cbb 100644 --- a/Test/Program.cs +++ b/Test/Program.cs @@ -23,7 +23,7 @@ namespace Test } // Loop through the input paths - foreach (string inputPath in args) + foreach (string inputPath in options.InputPaths) { #if NETFRAMEWORK PrintPathInfo(inputPath, false, options.Debug);