From ef03af96144e631a9ab3d34af9d3d6cc6049862a Mon Sep 17 00:00:00 2001 From: psychobunny Date: Wed, 23 Apr 2014 19:59:55 -0400 Subject: [PATCH] allow supervisor to watch less files as well --- nodebb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nodebb b/nodebb index 47a3d7f063..f6c3a3d2a0 100755 --- a/nodebb +++ b/nodebb @@ -101,7 +101,7 @@ case "$1" in echo "Launching NodeBB in \"development\" mode." echo "To run the production build of NodeBB, please use \"forever\"." echo "More Information: https://github.com/designcreateplay/NodeBB/wiki/How-to-run-NodeBB" - NODE_ENV=development supervisor -q --ignore public/templates --extensions 'node|js|tpl' -- app "$@" + NODE_ENV=development supervisor -q --ignore public/templates --extensions 'node|js|tpl|less' -- app "$@" ;; *)