mirror of
https://github.com/jashkenas/coffeescript.git
synced 2022-11-09 12:23:24 -05:00
7 lines
181 B
JavaScript
Executable file
7 lines
181 B
JavaScript
Executable file
#!/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();
|