From 7243aebee0799ebf0e68c87fdf1cc64d1c77d79f Mon Sep 17 00:00:00 2001 From: psychobunny Date: Thu, 2 Oct 2014 17:55:30 -0400 Subject: [PATCH] fixed supervisor to ignore committed minified file --- nodebb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nodebb b/nodebb index 25b43bd1bb..0db6fe2f38 100755 --- a/nodebb +++ b/nodebb @@ -102,7 +102,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://docs.nodebb.org/en/latest/running/index.html" - NODE_ENV=development supervisor -q --ignore public/templates --extensions 'node|js|tpl|less' -- app "$@" + NODE_ENV=development supervisor -q --ignore public/templates,public/nodebb.min.js,public/nodebb.min.js.map --extensions 'node|js|tpl|less' -- app "$@" ;; *)