diff --git a/exec.js b/exec.js index 62995d9..3439de5 100644 --- a/exec.js +++ b/exec.js @@ -24,5 +24,8 @@ export async function exec(command, arguments_) { @returns {string} */ export function execSync(command, arguments_) { - return childProcess.execFileSync(command, arguments_, {encoding: 'utf8'}).trim(); + return childProcess.execFileSync(command, arguments_, { + encoding: 'utf8', + stdio: ['ignore', 'pipe', 'ignore'], + }).trim(); }