Fix SC2021.

This commit is contained in:
Darko Poljak 2018-10-05 12:52:44 +02:00
parent 644ec85d80
commit a369acea72
1 changed files with 1 additions and 1 deletions

View File

@ -34,7 +34,7 @@ case "$state_should" in
if [ ! -f "$__object/parameter/$boolean" ]; then
boolean="no${boolean}"
fi
upper=$(echo $boolean | tr '[a-z]' '[A-Z]')
upper=$(echo $boolean | tr '[:lower:]' '[:upper:]')
booleans="$booleans $upper"
done