mirror of
https://github.com/metosin/reitit.git
synced 2025-12-17 00:11:11 +00:00
14 lines
348 B
Bash
Executable file
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
|