Added crude auto build script
This commit is contained in:
parent
c6d50bd438
commit
75095bf685
1 changed files with 9 additions and 0 deletions
9
build-auto.sh
Executable file
9
build-auto.sh
Executable file
|
@ -0,0 +1,9 @@
|
|||
#!/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
|
Loading…
Reference in a new issue