Skip to content

Commit

Permalink
fix: lein-modules script should run parent module last
Browse files Browse the repository at this point in the history
... in order to deploy the project in the right order to clojars
  • Loading branch information
opqdonut committed Mar 15, 2024
1 parent 73b42a5 commit 18e1725
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/lein-modules
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ set -e

# Modules
for ext in \
muuntaja \
muuntaja-form \
muuntaja-cheshire \
muuntaja-charred \
muuntaja-msgpack \
muuntaja-yaml; do
muuntaja-yaml \
muuntaja; do
cd modules/$ext; lein "$@"; cd ../..;
done

0 comments on commit 18e1725

Please sign in to comment.