mirror of
https://github.com/Ryujinx/Opentk.git
synced 2025-01-11 05:35:35 +00:00
Log error message when a non-existent path is specified.
This commit is contained in:
parent
8e7c717151
commit
cbeb09ebcb
|
@ -59,6 +59,7 @@ namespace Build.Tasks
|
||||||
if (String.IsNullOrEmpty(Path) ||
|
if (String.IsNullOrEmpty(Path) ||
|
||||||
System.IO.Directory.Exists(Path))
|
System.IO.Directory.Exists(Path))
|
||||||
{
|
{
|
||||||
|
Log.LogError(String.Format("Path '{0}' does not exist.", Path));
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
|
Loading…
Reference in a new issue