reitit/lein-modules

15 lines
265 B
Text
Raw Normal View History

#!/bin/bash
# A script that walks the tree of Leiningen projects and does $* on them
# original: https://github.com/juxt/yada/blob/master/treelein
2017-10-27 05:14:55 +00:00
set -e
# Modules
for ext in reitit-core reitit-ring; do
2017-10-27 05:14:55 +00:00
cd modules/$ext; lein $@; cd ../..;
done
# Core
2017-10-27 05:14:55 +00:00
lein $@