reitit/scripts/lein-modules

21 lines
311 B
Text
Raw Normal View History

#!/bin/bash
2017-10-27 05:14:55 +00:00
set -e
# Modules
2018-08-19 19:56:54 +00:00
for ext in \
reitit-core \
reitit-spec \
reitit-schema \
reitit-ring \
reitit-middleware \
reitit-http \
2018-09-07 16:50:10 +00:00
reitit-interceptors \
2018-08-19 19:56:54 +00:00
reitit-swagger \
reitit-swagger-ui \
reitit-frontend \
reitit-sieppari \
reitit; do
2017-10-28 09:14:16 +00:00
cd modules/$ext; lein "$@"; cd ../..;
2017-10-27 05:14:55 +00:00
done