We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d3c8a56 commit 0cd6cceCopy full SHA for 0cd6cce
exec.js
@@ -24,5 +24,8 @@ export async function exec(command, arguments_) {
24
@returns {string}
25
*/
26
export function execSync(command, arguments_) {
27
- return childProcess.execFileSync(command, arguments_, {encoding: 'utf8'}).trim();
+ return childProcess.execFileSync(command, arguments_, {
28
+ encoding: 'utf8',
29
+ stdio: ['ignore', 'pipe', 'ignore'],
30
+ }).trim();
31
}
0 commit comments