2013-10-14 10:37:16 +04:00
|
|
|
#!/usr/bin/env node
|
2013-10-14 11:09:17 +04:00
|
|
|
var cp = require('./utils/child-process-wrapper.js');
|
2013-10-14 10:37:16 +04:00
|
|
|
var path = require('path');
|
2013-06-21 04:07:55 +04:00
|
|
|
|
2013-10-14 10:37:16 +04:00
|
|
|
process.chdir(path.dirname(__dirname));
|
2013-06-21 04:07:55 +04:00
|
|
|
|
2013-10-14 11:09:17 +04:00
|
|
|
cp.safeExec('node script/bootstrap', function() {
|
2013-10-30 13:05:08 +04:00
|
|
|
// node node_modules/grunt-cli/bin/grunt "$@"
|
|
|
|
var gruntPath = path.join('node_modules', 'grunt-cli', 'bin', 'grunt');
|
2013-10-14 11:09:17 +04:00
|
|
|
var args = [gruntPath].concat(process.argv.slice(2));
|
|
|
|
cp.safeSpawn(process.execPath, args, process.exit);
|
2013-10-14 10:37:16 +04:00
|
|
|
});
|