mirror of
https://github.com/claunia/SabreTools.git
synced 2025-12-16 19:14:27 +00:00
Fix RombaSharp build
This commit is contained in:
@@ -46,7 +46,7 @@ namespace RombaSharp.Features
|
||||
outdat = outdat.Ensure(create: true);
|
||||
|
||||
// Check that all required directories exist
|
||||
if (!Directory.Exists(source))
|
||||
if (source == null || !Directory.Exists(source))
|
||||
{
|
||||
logger.Error($"File '{source}' does not exist!");
|
||||
return false;
|
||||
|
||||
Reference in New Issue
Block a user