mirror of
https://github.com/metosin/reitit.git
synced 2026-01-02 06:38:26 +00:00
14 lines
265 B
Bash
Executable file
14 lines
265 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
|
|
|
|
set -e
|
|
|
|
# Modules
|
|
for ext in reitit-core reitit-ring; do
|
|
cd modules/$ext; lein $@; cd ../..;
|
|
done
|
|
|
|
# Core
|
|
lein $@
|