Minor 'unless' logic update
This commit is contained in:
@@ -223,7 +223,12 @@ class ProjectXMLParser extends HXProject {
|
||||
|
||||
required = substitute (required);
|
||||
var check = StringTools.trim (required);
|
||||
if (check != "" && check != "true" && !defines.exists (check) && (environment == null || !environment.exists (check)) && check != command) {
|
||||
|
||||
if (check == "false") {
|
||||
|
||||
matchRequired = false;
|
||||
|
||||
} else if (check != "" && check != "true" && !defines.exists (check) && (environment == null || !environment.exists (check)) && check != command) {
|
||||
|
||||
matchRequired = false;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user