Fix directory ensurance until library fixed

This commit is contained in:
Matt Nadareski
2024-03-11 13:42:55 -04:00
parent 25d8d4faeb
commit 4db6d14ffb
7 changed files with 8 additions and 8 deletions

View File

@@ -40,7 +40,7 @@ namespace RombaSharp.Features
string? newdat = GetString(features, NewStringValue);
// Ensure the output directory
outdat = outdat?.Ensure(create: true);
outdat = (outdat ?? string.Empty).Ensure(create: true);
// Check that all required files exist
if (!File.Exists(olddat))