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 d63b9e4 commit 0eda7abCopy full SHA for 0eda7ab
1 file changed
dist/index.js
@@ -34564,10 +34564,7 @@ const readConfig = (config, userConfigPath) => {
34564
exports.readConfig = readConfig;
34565
const exec = async (command) => {
34566
const execAsync = (0, node_util_1.promisify)(node_child_process_1.exec);
34567
- const { stdout, stderr } = await execAsync(command);
34568
- if (stderr !== '') {
34569
- throw new Error(stderr);
34570
- }
+ const { stdout } = await execAsync(command);
34571
return stdout.toString().trim();
34572
};
34573
exports.exec = exec;
0 commit comments