Fixed issue #455-lowercasing checks on both sides

This commit is contained in:
Eric Renfro 2023-05-30 13:00:08 -04:00
parent e4bb8a79a4
commit c6b63cf94b
Signed by: psi-jack
GPG Key ID: 14977F3A50D9A5BF
1 changed files with 4 additions and 2 deletions

6
yadm
View File

@ -204,6 +204,7 @@ function score_file() {
return return
fi fi
elif [[ "$label" =~ ^(d|distro)$ ]]; then elif [[ "$label" =~ ^(d|distro)$ ]]; then
value=${value,,}
if [ "${value/\ /_}" = "${local_distro/\ /_}" ]; then if [ "${value/\ /_}" = "${local_distro/\ /_}" ]; then
score=$((score + 4)) score=$((score + 4))
else else
@ -211,6 +212,7 @@ function score_file() {
return return
fi fi
elif [[ "$label" =~ ^(f|distro_family)$ ]]; then elif [[ "$label" =~ ^(f|distro_family)$ ]]; then
value=${value,,}
if [ "${value/\ /_}" = "${local_distro_family/\ /_}" ]; then if [ "${value/\ /_}" = "${local_distro_family/\ /_}" ]; then
score=$((score + 8)) score=$((score + 8))
else else
@ -1522,7 +1524,7 @@ function query_distro() {
fi fi
done < "$OS_RELEASE" done < "$OS_RELEASE"
fi fi
echo "$distro" echo "${distro,,}"
} }
function query_distro_family() { function query_distro_family() {
@ -1536,7 +1538,7 @@ function query_distro_family() {
fi fi
done < "$OS_RELEASE" done < "$OS_RELEASE"
fi fi
echo "$family" echo "${family,,}"
} }
function process_global_args() { function process_global_args() {