FallBack projet absent sur une machine ou l'autre

This commit is contained in:
MaksTinyWorkshop
2026-03-08 11:21:11 +01:00
parent e1910740d9
commit cded7b4a1c
2 changed files with 7 additions and 2 deletions

View File

@@ -25,7 +25,11 @@ build_projects_table() {
else
path="$path_nuc"
fi
echo "| $nom | $stack | \`$path\` | $etat |"
if [ -z "$path" ]; then
echo "| $nom | $stack | *non disponible sur cette machine* | $etat |"
else
echo "| $nom | $stack | \`$path\` | $etat |"
fi
done < "$PROJECTS_CONF"
}