reitit/scripts/cljdoc-check.sh
Joel Kaasinen 9e85bfc9bb 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
2023-09-11 15:42:50 +03:00

14 lines
348 B
Bash
Executable file

#!/bin/bash
set -e
# Need pom and jar for analyze local.
# Need repo version installed to the local m2 for up-to-date dependencies between modules.
# Install will run jar and pom tasks already.
./scripts/lein-modules install
for i in modules/*; do
cd $i
clojure -J-Dclojure.main.report=stderr -Tcljdoc-analyzer analyze-local
cd ../..
done