Add strings.ToLower ...

pull/131/head
Philippe ALEXANDRE 6 years ago
parent c4e7487ba7
commit 7b61cf60fe

@ -80,6 +80,7 @@ func (t *testItem) execute(s string) (result bool) {
switch t.Compare.Op {
case "eq":
value := strings.ToLower(flagVal)
// Do case insensitive comparaison for booleans ...
if value == "false" || value == "true" {
result = value == t.Compare.Value
@ -88,6 +89,7 @@ func (t *testItem) execute(s string) (result bool) {
}
case "noteq":
value := strings.ToLower(flagVal)
// Do case insensitive comparaison for booleans ...
if value == "false" || value == "true" {
result = !(value == t.Compare.Value)

Loading…
Cancel
Save