diff --git a/pkg/match/match.go b/pkg/match/match.go index 1b458f81c..6ee40a081 100644 --- a/pkg/match/match.go +++ b/pkg/match/match.go @@ -15,7 +15,7 @@ const ( func (m Match) Equal(s, t string) bool { if m == CASE_INSENSITIVE { - strings.EqualFold(s, t) + return strings.EqualFold(s, t) } return s == t