Skip to content

Commit

Permalink
Fix IF command.
Browse files Browse the repository at this point in the history
  • Loading branch information
aufdemrand committed Jun 30, 2013
1 parent 67be86c commit da64a9f
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -62,7 +62,7 @@ public void parseArgs(ScriptEntry scriptEntry) throws InvalidArgumentsException
}

// Replace symbol-operators/bridges with ENUM value for matching
arg.replaceValue(arg.getValue().replace("==", "EQUALS").replace(">=", "ORMORE").replace("<=", "ORLESS")
arg.replaceValue(arg.getValue().replace("==", "EQUALS").replace(">=", "OR_MORE").replace("<=", "OR_LESS")
.replace("<", "LESS").replace(">", "MORE").replace("||", "OR").replace("&&", "AND"));

// Set bridge
Expand Down

0 comments on commit da64a9f

Please sign in to comment.