moving command_line.coffee -> command.coffee

This commit is contained in:
Jeremy Ashkenas 2010-03-06 22:18:15 -05:00
parent e267226438
commit 893fb98522
4 changed files with 2 additions and 2 deletions

View File

@ -55,7 +55,7 @@ task 'doc:site', 'watch and continually rebuild the documentation for the websit
task 'doc:source', 'rebuild the internal documentation', ->
exec 'docco src/*.coffee && rm -r documentation/docs && mv docs documentation/docs', (err) ->
exec 'docco src/*.coffee && cp -rf docs documentation/docs && rm -r docs', (err) ->
throw err if err

View File

@ -6,4 +6,4 @@ var fs = require('fs');
var lib = path.join(path.dirname(fs.realpathSync(__filename)), '../lib');
require.paths.unshift(lib);
require('command_line').run();
require('command').run();