Forráskód Böngészése

Merge pull request #432 from signed-log/alt_with_spaces

Tim Byrne 2 éve
szülő
commit
67c684473d
1 módosított fájl, 2 hozzáadás és 2 törlés
  1. 2 2
      yadm

+ 2 - 2
yadm

@@ -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