mirror of
https://github.com/metosin/reitit.git
synced 2025-12-16 16:01:11 +00:00
22 lines
346 B
Bash
Executable file
22 lines
346 B
Bash
Executable file
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
# Modules
|
|
for ext in \
|
|
reitit-core \
|
|
reitit-dev \
|
|
reitit-spec \
|
|
reitit-schema \
|
|
reitit-ring \
|
|
reitit-middleware \
|
|
reitit-http \
|
|
reitit-interceptors \
|
|
reitit-swagger \
|
|
reitit-swagger-ui \
|
|
reitit-frontend \
|
|
reitit-sieppari \
|
|
reitit-pedestal \
|
|
reitit; do
|
|
cd modules/$ext; lein "$@"; cd ../..;
|
|
done
|