keycloak-scim/build-auto.sh

8 lines
283 B
Bash
Raw Normal View History

2017-08-30 05:24:03 +00:00
#!/bin/bash
while true; do
2017-08-30 07:26:56 +00:00
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`
2017-08-30 05:24:03 +00:00
mvn install -f $GUIDE
done