1
0
Fork 0
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:
LAPTOP-NV8MPI8C\Yuvan Wickramasinghe 2025-03-27 15:42:00 -07:00
parent b55f980531
commit 275dbd14e8
No known key found for this signature in database

View file

@ -11062,7 +11062,9 @@ namespace IDE
String errorString = scope String();
if (!DoResolveConfigString(platformName, workspaceOptions, project, options, configString, errorString, outResult))
{
OutputErrorLine("Invalid macro in {0}: {1}", errorContext, errorString);
if (!CustomBuildProperties.Contains(errorString))
OutputErrorLine("Invalid macro in {0}: {1}", errorContext, errorString);
return false;
}
return true;