Skip to content

Commit

Permalink
test: remove src/ check from cljdoc-check.sh
Browse files Browse the repository at this point in the history
the official cljdoc build doesn't to checks like it, so let's not hide
those failures
  • Loading branch information
opqdonut committed Sep 11, 2023
1 parent b14297b commit 9e85bfc
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions scripts/cljdoc-check.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,6 @@ set -e

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

0 comments on commit 9e85bfc

Please sign in to comment.