bug avec le calcul du système

This commit is contained in:
Jephté Clain 2015-08-24 16:11:56 +04:00
parent e040cac091
commit e356c2be9a
1 changed files with 2 additions and 6 deletions

View File

@ -382,10 +382,8 @@ function check_sysinfos() {
if array_contains "$sysdistvar_" "$sysdist_"; then
r_=0
check_=skip
break
[ "$sysdist_" == "$value_" ] && break
elif [ "$sysdist_" == "$value_" ]; then
r_=0
check_=skip
break
fi
done
@ -424,10 +422,8 @@ function check_sysinfos() {
if array_contains "$sysvervar_" "$sysver_"; then
r_=0
check_=skip
break
[ "$sysver_" == "$value_" ] && break
elif [ "$sysver_" == "$value_" ]; then
r_=0
check_=skip
break
fi
done