reitit/lein-modules
Tommi Reiman 4805555417 Initial module split
* metosin/reitit (all)
* metosin/reitit-core (just the router)
* metosin/reitit-ring (the ring stuff)
2017-10-29 09:31:28 +02:00

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 $*