openrat-cms

# OpenRat Content Management System
git clone http://git.code.weiherhei.de/openrat-cms.git
Log | Files | Refs

commit 0ff6f12dfc350ba3c48941cbec78c05fe4d65fe3
parent 4f6e6e6963e57ab0ad0fdcbdf0b94781320daac6
Author: Jan Dankert <develop@jandankert.de>
Date:   Sat,  9 May 2020 08:09:54 +0200

Fix: Template Watcher and the new module paths

Diffstat:
dev-helper/template-watcher.sh | 7+++++--
1 file changed, 5 insertions(+), 2 deletions(-)

diff --git a/dev-helper/template-watcher.sh b/dev-helper/template-watcher.sh @@ -9,11 +9,14 @@ CMS_URL=$1 while true; do + # Calling compiler first + echo "compiling started at $(date)" + curl $1/modules/template_engine/TemplateCompiler.php + echo "compiling ended at $(date)" - inotifywait --event modify -r ../modules/template_engine/ ../modules/cms-ui/themes/default/html/views/ + inotifywait --event modify -r ../modules/template_engine/ ../modules/cms/ui/themes/default/html/views/ echo File was changed. - curl $1/modules/template_engine/TemplateCompiler.php done