From 893fb98522487c8549b51725654811d5356a3c78 Mon Sep 17 00:00:00 2001 From: Jeremy Ashkenas Date: Sat, 6 Mar 2010 22:18:15 -0500 Subject: [PATCH] moving command_line.coffee -> command.coffee --- Cakefile | 2 +- bin/coffee | 2 +- lib/{command_line.js => command.js} | 0 src/{command_line.coffee => command.coffee} | 0 4 files changed, 2 insertions(+), 2 deletions(-) rename lib/{command_line.js => command.js} (100%) rename src/{command_line.coffee => command.coffee} (100%) diff --git a/Cakefile b/Cakefile index bc24127e..83c428e8 100644 --- a/Cakefile +++ b/Cakefile @@ -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 diff --git a/bin/coffee b/bin/coffee index 0c9f168f..521db04d 100755 --- a/bin/coffee +++ b/bin/coffee @@ -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(); diff --git a/lib/command_line.js b/lib/command.js similarity index 100% rename from lib/command_line.js rename to lib/command.js diff --git a/src/command_line.coffee b/src/command.coffee similarity index 100% rename from src/command_line.coffee rename to src/command.coffee