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