mirror of
https://github.com/metosin/reitit.git
synced 2025-12-17 16:31:11 +00:00
8 lines
133 B
Bash
8 lines
133 B
Bash
|
|
#!/bin/bash
|
||
|
|
|
||
|
|
for i in modules/*; do
|
||
|
|
cd $i
|
||
|
|
clojure -J-Dclojure.main.report=stderr -Tcljdoc-analyzer analyze-local
|
||
|
|
cd ../..
|
||
|
|
done
|