mirror of
https://github.com/metosin/reitit.git
synced 2025-12-17 08:21:11 +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 $*
|