mirror of
https://github.com/laurent22/joplin.git
synced 2024-12-12 08:54:00 +02:00
23 lines
447 B
JavaScript
23 lines
447 B
JavaScript
const execCommand = (command) => {
|
|
const exec = require('child_process').exec;
|
|
|
|
console.info(`Running: ${command}`);
|
|
|
|
return new Promise((resolve, reject) => {
|
|
exec(command, (error, stdout) => {
|
|
if (error) {
|
|
if (error.signal === 'SIGTERM') {
|
|
resolve('Process was killed');
|
|
} else {
|
|
error.stdout = stdout;
|
|
reject(error);
|
|
}
|
|
} else {
|
|
resolve(stdout.trim());
|
|
}
|
|
});
|
|
});
|
|
};
|
|
|
|
module.exports = execCommand;
|