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