Skip to content

Commit

Permalink
Try skipping module without src folder
Browse files Browse the repository at this point in the history
  • Loading branch information
Deraen committed Aug 28, 2023
1 parent 76a08a2 commit 0323409
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 0323409

Please sign in to comment.