minor fixes

This commit is contained in:
2026-04-17 16:58:42 +02:00
parent 04a0ae6cf9
commit c167c3a9ba
4 changed files with 6 additions and 18 deletions

View File

@@ -7,7 +7,6 @@ SERVICE_NAME="@@SERVICE_NAME@@"
INSTALL_DIR="@@INSTALL_DIR@@"
MANIFEST_PATH="@@MANIFEST_PATH@@"
LOG_FILE="$INSTALL_DIR/${SERVICE_NAME}.log"
FIX_SCRIPT="$INSTALL_DIR/fix.sh"
@@ -47,6 +46,6 @@ log_info "Watching: $MANIFEST_PATH"
inotifywait -m -e close_write "$MANIFEST_PATH" 2>/dev/null \
| while read -r _dir _event _file; do
log_info "Manifest changed invoking fix..."
log_info "Manifest changed - invoking fix..."
bash "$FIX_SCRIPT"
done