From 2969e156c7081e8ee569fa5a2cb7e2400d9247a2 Mon Sep 17 00:00:00 2001 From: Jeremy Ashkenas Date: Sun, 28 Feb 2010 10:37:12 -0500 Subject: [PATCH] fixing require paths in the Cakefile so that build:jison will work, even if you don't have it installed. --- Cakefile | 1 + 1 file changed, 1 insertion(+) diff --git a/Cakefile b/Cakefile index d0734184..50981351 100644 --- a/Cakefile +++ b/Cakefile @@ -29,6 +29,7 @@ task 'build', 'build the CoffeeScript language from source', -> task 'build:parser', 'rebuild the Jison parser (run build first)', -> + require.paths.unshift 'vendor/jison/lib' parser: require('grammar').parser js: parser.generate() parser_path: 'lib/parser.js'