appveyor: Fix checking of valid projects
All checks were successful
continuous-integration/appveyor/branch AppVeyor build succeeded
All checks were successful
continuous-integration/appveyor/branch AppVeyor build succeeded
This commit is contained in:
parent
53c527342f
commit
60f21e0279
1 changed files with 2 additions and 1 deletions
|
@ -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 ""
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue