зеркало из https://github.com/mozilla/commonplace.git
Pipe bootstrapped update information to stdout and stderr
This commit is contained in:
Родитель
9aec462797
Коммит
9431299d78
|
@ -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 {
|
||||
|
|
Загрузка…
Ссылка в новой задаче