PR-689102: fix npx.

This commit is contained in:
2022-08-04 21:46:31 +00:00
parent af7e0778df
commit 585e32d43f
2 changed files with 2 additions and 2 deletions

View File

@ -15,7 +15,7 @@ const runCommand = command => {
const runCommandWithOutput = command => {
try{
return execSync(`${command}`, {stdio: 'inherit'});
return execSync(`${command}`);
} catch (e) {
console.error(`Failed to execute ${command}`, e);
return false;