Allow placeholder files to be used in Check

This commit is contained in:
Matt Nadareski
2025-10-19 11:45:22 -04:00
parent 6eb976c842
commit ac6a77d9da
2 changed files with 1 additions and 7 deletions

View File

@@ -32,6 +32,7 @@
- Handle a provided log zip in Check operation
- Allow files to be zipped but not deleted
- Fix long translated strings
- Allow placeholder files to be used in Check
### 3.5.0 (2025-10-10)

View File

@@ -97,13 +97,6 @@ namespace MPF.Check.Features
// Loop through all the rest of the args
for (int i = 0; i < Inputs.Count; i++)
{
// Check for a file
if (!File.Exists(Inputs[i].Trim('"')))
{
Console.Error.WriteLine($"{Inputs[i].Trim('"')} does not exist");
return false;
}
// Get the full file path
string filepath = Path.GetFullPath(Inputs[i].Trim('"'));