mirror of
https://github.com/metosin/reitit.git
synced 2025-12-29 04:38:26 +00:00
* metosin/reitit (all) * metosin/reitit-core (just the router) * metosin/reitit-ring (the ring stuff)
12 lines
263 B
Bash
Executable file
12 lines
263 B
Bash
Executable file
#!/bin/bash
|
|
|
|
# A script that walks the tree of Leiningen projects and does $* on them
|
|
# original: https://github.com/juxt/yada/blob/master/treelein
|
|
|
|
# Modules
|
|
for ext in reitit-core reitit-ring; do
|
|
cd modules/$ext; lein $*; cd ../..;
|
|
done
|
|
|
|
# Core
|
|
lein $*
|