Be explicit, avoid bugs.

unbalanced quote.

adding to watch command

fixing watch
This commit is contained in:
e0d
2013-10-24 11:50:11 -04:00
parent 13aa77b02c
commit 8289406076

View File

@@ -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