mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-08 11:38:21 +02:00
Check custom build properties before outputting error message.
This commit is contained in:
parent
b55f980531
commit
275dbd14e8
1 changed files with 3 additions and 1 deletions
|
@ -11062,7 +11062,9 @@ namespace IDE
|
||||||
String errorString = scope String();
|
String errorString = scope String();
|
||||||
if (!DoResolveConfigString(platformName, workspaceOptions, project, options, configString, errorString, outResult))
|
if (!DoResolveConfigString(platformName, workspaceOptions, project, options, configString, errorString, outResult))
|
||||||
{
|
{
|
||||||
|
if (!CustomBuildProperties.Contains(errorString))
|
||||||
OutputErrorLine("Invalid macro in {0}: {1}", errorContext, errorString);
|
OutputErrorLine("Invalid macro in {0}: {1}", errorContext, errorString);
|
||||||
|
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
return true;
|
return true;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue