From 9e85bfc9bb62272386325e91ac801ca58f221c06 Mon Sep 17 00:00:00 2001 From: Joel Kaasinen Date: Mon, 11 Sep 2023 15:42:50 +0300 Subject: [PATCH] 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 --- scripts/cljdoc-check.sh | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/scripts/cljdoc-check.sh b/scripts/cljdoc-check.sh index da7a599b..a8b4e005 100755 --- a/scripts/cljdoc-check.sh +++ b/scripts/cljdoc-check.sh @@ -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