Pipe bootstrapped update information to stdout and stderr

This commit is contained in:
Matt Basta 2013-08-08 13:21:04 -07:00
Родитель 9aec462797
Коммит 9431299d78
1 изменённых файлов: 6 добавлений и 1 удалений

Просмотреть файл

@ -108,7 +108,12 @@ function update() {
console.log('`npm update` complete.');
console.log('Bootstrapping commonplace update...');
spawn('commonplace', ['update']).on('close', function(code) {
var updater = spawn('commonplace', ['update']);
updater.stdout.on('data', process.stdout.write);
updater.stderr.on('data', process.stderr.write);
updater.on('close', function(code) {
if (code) {
console.error('Error updating commonplace');
} else {