From 959c4df2ed09802ad0148af0cb37e77e0fcfbc5e Mon Sep 17 00:00:00 2001 From: Chronos Ouroboros Date: Mon, 2 Jan 2023 07:05:33 -0300 Subject: [PATCH] Small change to the list verb to ensure correctness. --- SkoutTools/BitUtils/VerbList.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/SkoutTools/BitUtils/VerbList.cs b/SkoutTools/BitUtils/VerbList.cs index ba6574f..a57e5fa 100644 --- a/SkoutTools/BitUtils/VerbList.cs +++ b/SkoutTools/BitUtils/VerbList.cs @@ -36,6 +36,7 @@ internal class ListOptions { } internal int ListBit (ListOptions options) { + options.InputFile = Path.GetFullPath (options.InputFile); if (!File.Exists (options.InputFile)) { Console.WriteLine ($"The specified input path does not exist."); return 1;