mirror of
https://github.com/Foundry376/Mailspring.git
synced 2024-11-11 10:12:00 +08:00
46 lines
1.3 KiB
JavaScript
46 lines
1.3 KiB
JavaScript
var childProcess = require('child_process');
|
|
|
|
// Exit the process if the command failed and only call the callback if the
|
|
// command succeed, output of the command would also be piped.
|
|
exports.safeExec = function(command, options, callback) {
|
|
if (!callback) {
|
|
callback = options;
|
|
options = {};
|
|
}
|
|
if (!options)
|
|
options = {};
|
|
|
|
// This needed to be increased for `apm test` runs that generate many failures
|
|
// The default is 200KB.
|
|
options.maxBuffer = 1024 * 1024;
|
|
|
|
var child = childProcess.exec(command, options, function(error, stdout, stderr) {
|
|
if (error && !options.ignoreStderr)
|
|
process.exit(error.code || 1);
|
|
else
|
|
callback(null);
|
|
});
|
|
child.stderr.pipe(process.stderr);
|
|
if (!options.ignoreStdout)
|
|
child.stdout.pipe(process.stdout);
|
|
}
|
|
|
|
// Same with safeExec but call child_process.spawn instead.
|
|
exports.safeSpawn = function(command, args, options, callback) {
|
|
if (!callback) {
|
|
callback = options;
|
|
options = {};
|
|
}
|
|
var child = childProcess.spawn(command, args, options);
|
|
child.stderr.pipe(process.stderr);
|
|
child.stdout.pipe(process.stdout);
|
|
child.on('error', function(error) {
|
|
console.error('Command \'' + command + '\' failed: ' + error.message);
|
|
});
|
|
child.on('exit', function(code) {
|
|
if (code != 0)
|
|
process.exit(code);
|
|
else
|
|
callback(null);
|
|
});
|
|
}
|