diff --git a/lein-modules b/lein-modules index f9fe5708..feab8f2e 100755 --- a/lein-modules +++ b/lein-modules @@ -1,14 +1,8 @@ #!/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 ../..; +for ext in reitit-core reitit-ring reitit-spec reitit; do + cd modules/$ext; lein "$@"; cd ../..; done - -# Core -lein $@