Tweak to previous commit for some build versions

This commit is contained in:
Matt Nadareski
2025-05-04 11:18:28 -04:00
parent 1476972c26
commit 9548993982
2 changed files with 3 additions and 2 deletions

View File

@@ -39,6 +39,7 @@
- Update to DIC 20250501
- Update RedumpLib to 1.6.6
- Pre-clean file path in CLI interactive mode
- Tweak to previous commit for some build versions
### 3.3.0 (2025-01-03)

View File

@@ -335,8 +335,8 @@ namespace MPF.CLI
Console.Write("> ");
result = Console.ReadLine();
if (result.Length > 0)
result = Path.GetFullPath(result);
if (!string.IsNullOrEmpty(result))
result = Path.GetFullPath(result!);
opts.FilePath = result;
goto root;