Skip to content

Commit

Permalink
Merge pull request #640 from metosin/cljdoc-check-fix
Browse files Browse the repository at this point in the history
Try skipping module without src folder
  • Loading branch information
Deraen authored Aug 30, 2023
2 parents 76a08a2 + 0323409 commit cdbfef2
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion scripts/cljdoc-check.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@ set -e

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

0 comments on commit cdbfef2

Please sign in to comment.