Make ifs style be consistent

This commit is contained in:
Diogo Monica 2015-05-14 20:26:32 -07:00
parent d6c1443641
commit 03ac3f5bd3
6 changed files with 27 additions and 27 deletions

View file

@ -29,7 +29,7 @@ do_version_check() {
contains() {
string="$1"
substring="$2"
if test "${string#*$substring}" != "$string"
if [ "${string#*$substring}" != "$string" ]
then
return 0 # $substring is in $string
else