From 59e41f195b3578372a9d147fb2be9c2d9b2685f0 Mon Sep 17 00:00:00 2001 From: Jeremy Ashkenas Date: Fri, 11 Jun 2010 18:53:12 -0400 Subject: [PATCH] simpler 'cake loc' task. --- Cakefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cakefile b/Cakefile index 0590c3b5..e693a58b 100644 --- a/Cakefile +++ b/Cakefile @@ -75,7 +75,7 @@ task 'doc:underscore', 'rebuild the Underscore.coffee documentation page', -> task 'loc', 'count the lines of source code in CoffeeScript', -> exec "cat src/*.coffee | grep -v '^\\( *#\\|\\s*$\\)' | wc -l | tr -s ' '", (err, stdout) -> - print "lines of code in src/*.coffee:$stdout" + print stdout task 'test', 'run the CoffeeScript language test suite', ->