From 7a885b003cc63528257a83c5b48bb412c18b856d Mon Sep 17 00:00:00 2001 From: John Doty Date: Tue, 29 Apr 2014 12:00:33 -0700 Subject: [PATCH] Fix indentation in the Cakefile Somehow the indentation has gotten screwed up, and this has interfered with the ability to build the coffee files. --- htdocs/coffee/Cakefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/htdocs/coffee/Cakefile b/htdocs/coffee/Cakefile index 55d2ff8..acf7cdd 100644 --- a/htdocs/coffee/Cakefile +++ b/htdocs/coffee/Cakefile @@ -40,7 +40,7 @@ task 'build', 'Build single application file from source files', -> task 'docs', 'Build docs with docco (required)', -> appContents = new Array remaining = appFiles.length - for file, index in appFiles then do (file, index) -> + for file, index in appFiles then do (file, index) -> fs.readFile "src/#{file}.coffee", 'utf8', (err, fileContents) -> throw err if err appContents[index] = fileContents