From 8289406076395183de2fc17822182164dda878c8 Mon Sep 17 00:00:00 2001 From: e0d Date: Thu, 24 Oct 2013 11:50:11 -0400 Subject: [PATCH] Be explicit, avoid bugs. unbalanced quote. adding to watch command fixing watch --- rakelib/assets.rake | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rakelib/assets.rake b/rakelib/assets.rake index ca24f61be7..4dc928c828 100644 --- a/rakelib/assets.rake +++ b/rakelib/assets.rake @@ -31,9 +31,9 @@ def coffee_cmd(watch=false, debug=false) end end if watch - "node_modules/.bin/coffee --compile --watch . " + "node_modules/.bin/coffee --compile --watch lms/ cms/ common/" else - "node_modules/.bin/coffee --compile `find . -name *.coffee` " + "node_modules/.bin/coffee --compile `find lms/ cms/ common/ -type f -name *.coffee` " end end