appveyor: Fix checking of valid projects
All checks were successful
continuous-integration/appveyor/branch AppVeyor build succeeded

This commit is contained in:
Jonatan Nilsson 2023-02-08 07:02:20 +00:00
parent 53c527342f
commit 60f21e0279

View file

@ -36,9 +36,10 @@ build_script:
SUCCESS=1 SUCCESS=1
echo ""
echo "Checking following projects:" echo "Checking following projects:"
for f in *; do for f in *; do
[ -d "$f" ] || [ ! -L "$f" ] || [ ! "$f" = "base" ] && echo " * $f"; [ -d "$f" ] && [ ! -L "$f" ] && [ ! "$f" = "base" ] && echo " * $f";
done done
echo "" echo ""