mirror of
https://github.com/keycloak/keycloak
synced 2025-05-16 23:30:01 +00:00
Final removal of the securing_apps documentation Final checks for links, order and other minor things Closes #31328 Signed-off-by: rmartinc <rmartinc@redhat.com>
10 lines
298 B
Bash
Executable File
10 lines
298 B
Bash
Executable File
#!/bin/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
|