keycloak-scim/build-auto.sh

10 lines
209 B
Bash
Raw Normal View History

2017-08-30 05:24:03 +00:00
#!/bin/bash
DIR=`dirname $0`/src/web
while true; do
CHANGED=`inotifywait -r -e modify,move,create,delete server_installation --format %w`
GUIDE=`dirname $CHANGED`
mvn install -f $GUIDE
done