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