Fix SC2235.

This commit is contained in:
Darko Poljak 2018-10-05 12:14:51 +02:00
parent 73acb35a8a
commit 73d0a5bbbe
1 changed files with 1 additions and 1 deletions

View File

@ -57,7 +57,7 @@ fi
# Exit if nothing is needed to be done
[ "$state_is" = "$state_should" ] && ( [ -z "$version" ] || [ "$installed_version" = "$version" ] ) && exit 0
[ "$state_is" = "$state_should" ] && { [ -z "$version" ] || [ "$installed_version" = "$version" ]; } && exit 0
[ "$state_should" = "absent" ] && [ ! -z "$version" ] && [ "$installed_version" != "$version" ] && exit 0