mirror of
https://github.com/keycloak/keycloak.git
synced 2026-02-18 18:37:54 -05:00
9 lines
306 B
Bash
Executable file
9 lines
306 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
OPTS=$1
|
|
|
|
while true; do
|
|
CHANGED=`inotifywait -r -e modify,move,create,delete authorization_services getting_started server_admin server_development server_installation upgrading --format %w`
|
|
GUIDE=`echo $CHANGED | cut -d '/' -f 1`
|
|
mvn clean install -f $GUIDE $OPTS
|
|
done
|