Added API generation and Yaml testing for 1.x and 1.0 branches of elasticsearch.
This commit is contained in:
@ -16,9 +16,9 @@ function spawn(cmd, args, opts, cb) {
|
||||
|
||||
if (opts.cwd) {
|
||||
conf.cwd = opts.cwd;
|
||||
subdir = path.relative(root, opts.cwd) + ' ';
|
||||
subdir = path.relative(root, opts.cwd);
|
||||
}
|
||||
console.log(chalk.white.bold((subdir || '') + '$ ') + cmd + ' ' + args.join(' '));
|
||||
console.log(chalk.white.bold((subdir ? subdir + ' ' : '') + '$ ') + cmd + ' ' + args.join(' '));
|
||||
|
||||
var proc = cp.spawn(cmd, args, opts);
|
||||
var out = estream.split();
|
||||
|
||||
Reference in New Issue
Block a user