Skip to content

Commit 0eda7ab

Browse files
Build app
1 parent d63b9e4 commit 0eda7ab

1 file changed

Lines changed: 1 addition & 4 deletions

File tree

dist/index.js

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34564,10 +34564,7 @@ const readConfig = (config, userConfigPath) => {
3456434564
exports.readConfig = readConfig;
3456534565
const exec = async (command) => {
3456634566
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-
}
34567+
const { stdout } = await execAsync(command);
3457134568
return stdout.toString().trim();
3457234569
};
3457334570
exports.exec = exec;

0 commit comments

Comments
 (0)