Merge pull request #1584 from MichaelBlume/grammar_path

fix path to grammar file
This commit is contained in:
Michael Ficarra 2011-08-08 22:43:08 -07:00
commit fc1cdfc913
1 changed files with 2 additions and 2 deletions

View File

@ -75,8 +75,8 @@ task 'build:full', 'rebuild the source twice, and run the tests', ->
task 'build:parser', 'rebuild the Jison parser (run build first)', ->
extend global, require('util')
require 'jison'
parser = require('./lib/grammar').parser
fs.writeFile 'lib/parser.js', parser.generate()
parser = require('./lib/coffee-script/grammar').parser
fs.writeFile 'lib/coffee-script/parser.js', parser.generate()
task 'build:ultraviolet', 'build and install the Ultraviolet syntax highlighter', ->