Anyway, what I want to know is that is it possible to us the operator 'OR' with the LogicLib ${If}? What I need is the following:
${If} "$var_INST" == "true"
;code
${Else}
;code
${EndIf}
But I need:${If} "$var_INST" == "true" OR "$var_DB" == "true"
;code
${Else}
;code
${EndIf}
Is this possible?