make more noise, to see what breaks

This commit is contained in:
Norbert de Langen 2022-06-10 18:07:35 +02:00
parent 32c49a9aa0
commit c94140ba44
No known key found for this signature in database
GPG Key ID: FD0E78AF9A837762

View File

@ -60,9 +60,14 @@ export const exec = async (
logger.debug(command);
return new Promise((resolve, reject) => {
const defaultOptions: ExecOptions = {
silent: true,
silent: false,
};
const child = shell.exec(command, { ...defaultOptions, ...options, async: true });
const child = shell.exec(command, {
...defaultOptions,
...options,
async: true,
silent: false,
});
child.stderr.pipe(process.stderr);
child.stdout.pipe(process.stdout);