From d050789d77caeb96bc0f5563df8b522801944ed1 Mon Sep 17 00:00:00 2001 From: themancalledjakob Date: Thu, 11 Apr 2024 18:07:00 +0200 Subject: [PATCH] improved watching dependencies hashes: openFrameworks d78075f4bca6be2a2533c6e51a75cc1f18404501 ofxMsdfgen e14da13d02c4dff04fb69d7923469f606924e6c3 ofxGPUFont d482bb7cbdf6b296fa4ab5abcf73fb5ff8c8b239 ofxVariableLab 0b5f9bdebc1e5550621957e73c040c258ec6317b ofxProfiler a868e34fa1a79189dd4fbdede2938e308535e5e8 theatre 86d3e07f6f2c75fd6e08fca8c97e3617c9e23b18 --- watch.sh | 6 +++++- watchJs.sh | 6 +++++- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/watch.sh b/watch.sh index 7ac35b0..7607555 100755 --- a/watch.sh +++ b/watch.sh @@ -5,6 +5,10 @@ PREVIOUS_DIR=$(pwd) cd $DIR -echo "$(git ls-files src && git ls-files bin/data && echo "assets/template.html")" | entr -d ./rebuild.sh +while true; +do + echo "$(git ls-files src && git ls-files bin/data && echo "assets/template.html")" | entr -d ./rebuild.sh + sleep 1 +done cd $PREVIOUS_DIR diff --git a/watchJs.sh b/watchJs.sh index a0a820a..7df7876 100755 --- a/watchJs.sh +++ b/watchJs.sh @@ -5,6 +5,10 @@ PREVIOUS_DIR=$(pwd) cd $DIR -echo "$(git ls-files bin/em/variabletime/web)" | entr -d ./reloadbrowser.sh +while true; +do + echo "$(git ls-files bin/em/variabletime/web)" | entr -d ./reloadbrowser.sh + sleep 1 +done cd $PREVIOUS_DIR