slightly more coherent organization of concerns

This commit is contained in:
brianleroux
2011-08-19 21:50:46 -07:00
parent 9ad78a50f7
commit 7bf8c617c3
67 changed files with 6 additions and 9 deletions
Generated Vendored Executable
+7
View File
@@ -0,0 +1,7 @@
#!/usr/bin/env node
var path = require('path');
var fs = require('fs');
var lib = path.join(path.dirname(fs.realpathSync(__filename)), '../lib');
require(lib + '/cake').run();
Generated Vendored Executable
+7
View File
@@ -0,0 +1,7 @@
#!/usr/bin/env node
var path = require('path');
var fs = require('fs');
var lib = path.join(path.dirname(fs.realpathSync(__filename)), '../lib');
require(lib + '/command').run();