appveyor: Fix checking of valid projects
continuous-integration/appveyor/branch AppVeyor build succeeded Details

master
Jonatan Nilsson 2023-02-08 07:02:20 +00:00
parent 53c527342f
commit 60f21e0279
1 changed files with 2 additions and 1 deletions

View File

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