mirror of
https://github.com/metosin/reitit.git
synced 2026-01-31 10:00:33 +00:00
13 lines
263 B
Text
13 lines
263 B
Text
|
|
#!/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 $*
|