test: remove src/ check from cljdoc-check.sh

the official cljdoc build doesn't to checks like it, so let's not hide
those failures
This commit is contained in:
Joel Kaasinen 2023-09-11 15:42:50 +03:00
parent b14297b749
commit 9e85bfc9bb

View file

@ -9,10 +9,6 @@ set -e
for i in modules/*; do for i in modules/*; do
cd $i cd $i
if [ "$(ls -A src)" ]; then
clojure -J-Dclojure.main.report=stderr -Tcljdoc-analyzer analyze-local clojure -J-Dclojure.main.report=stderr -Tcljdoc-analyzer analyze-local
else
echo "Skip $i, empty src folder"
fi
cd ../.. cd ../..
done done