mirror of
https://github.com/jashkenas/coffeescript.git
synced 2022-11-09 12:23:24 -05:00
allowing checked out versions of the source to use bin/cake and bin/coffee from any directory.
This commit is contained in:
parent
4817b96bac
commit
9b78fb67cf
2 changed files with 2 additions and 2 deletions
2
bin/cake
2
bin/cake
|
@ -2,6 +2,6 @@
|
||||||
|
|
||||||
process.mixin(require('sys'));
|
process.mixin(require('sys'));
|
||||||
|
|
||||||
require.paths.unshift('./lib');
|
require.paths.unshift(__dirname + '/../lib');
|
||||||
|
|
||||||
require('cake').run();
|
require('cake').run();
|
||||||
|
|
|
@ -2,6 +2,6 @@
|
||||||
|
|
||||||
process.mixin(require('sys'));
|
process.mixin(require('sys'));
|
||||||
|
|
||||||
require.paths.unshift('./lib');
|
require.paths.unshift(__dirname + '/../lib');
|
||||||
|
|
||||||
require('command_line').run();
|
require('command_line').run();
|
||||||
|
|
Loading…
Reference in a new issue