f190773790b56a0f2749cabc10f2565c90b8ffb5
In Bash, the [[ <foo> == <bar> ]] and [[ <foo> = <bar> ]] conditionals interpret <bar> as a shell globbing pattern. This wasn't desired in _elementIn(), where the <bar> string is provided by the caller, and might contain pattern metacharacters. Replace this conditional with a plain string comparison made with '[' (aka, the 'test' command).
Description
No description provided
Languages
Python
55.2%
Shell
30.7%
Batchfile
5.9%
Inno Setup
4.3%
Ruby
2.2%
Other
1.7%