mirror of
https://github.com/keycloak/keycloak
synced 2025-05-14 14:09:34 +00:00
10 lines
312 B
Bash
Executable File
10 lines
312 B
Bash
Executable File
#!/bin/bash
|
|
|
|
OPTS=$1
|
|
|
|
while true; do
|
|
CHANGED=`inotifywait -r -e modify,move,create,delete authorization_services getting_started securing_apps server_admin server_development server_installation upgrading --format %w`
|
|
GUIDE=`echo $CHANGED | cut -d '/' -f 1`
|
|
mvn clean install -f $GUIDE $OPTS
|
|
done
|