Merge pull request #432 from signed-log/alt_with_spaces

pr/432
Tim Byrne 2 years ago
commit 67c684473d
No known key found for this signature in database
GPG Key ID: 14DB4FC2465A4B12

@ -204,14 +204,14 @@ function score_file() {
return
fi
elif [[ "$label" =~ ^(d|distro)$ ]]; then
if [ "$value" = "$local_distro" ]; then
if [ "${value/\ /_}" = "${local_distro/\ /_}" ]; then
score=$((score + 4))
else
score=0
return
fi
elif [[ "$label" =~ ^(f|distro_family)$ ]]; then
if [ "$value" = "$local_distro_family" ]; then
if [ "${value/\ /_}" = "${local_distro_family/\ /_}" ]; then
score=$((score + 8))
else
score=0

Loading…
Cancel
Save