reitit/lein-modules
2017-10-29 09:31:28 +02:00

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