keycloak-scim/build-auto.sh
2017-08-30 09:26:56 +02:00

7 lines
283 B
Bash
Executable file

#!/bin/bash
while true; do
CHANGED=`inotifywait -r -e modify,move,create,delete authorization_services getting_started securing_apps server_admin server_development server_installation --format %w`
GUIDE=`echo $CHANGED | cut -d '/' -f 1`
mvn install -f $GUIDE
done