reitit/lein-modules

13 lines
263 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
# Modules
for ext in reitit-core reitit-ring; do
cd modules/$ext; lein $*; cd ../..;
done
# Core
lein $*