mirror of
https://github.com/Karaka-Management/Build.git
synced 2026-01-10 19:28:41 +00:00
19 lines
332 B
Bash
Executable File
19 lines
332 B
Bash
Executable File
#!/bin/bash
|
|
|
|
DIRECTORY_TO_OBSERVE="cssOMS jsOMS"
|
|
function watcher {
|
|
inotifywait -r -e modify,move,create,delete \
|
|
--exclude ".*(\.css|\.php|\.json|\.md|\.sh|\.txt|\.log|\.min\.js)" \
|
|
${DIRECTORY_TO_OBSERVE}
|
|
}
|
|
|
|
BUILD_SCRIPT=build_frontend.sh
|
|
function build {
|
|
bash ${BUILD_SCRIPT}
|
|
}
|
|
|
|
build
|
|
while watcher; do
|
|
build
|
|
done
|