Skip to content

Commit

Permalink
Merge pull request #898 from GoogleChromeLabs/partialRollback881
Browse files Browse the repository at this point in the history
Partial rollback of PR #881: exec() cannot have shell:true
  • Loading branch information
OlegNitz authored Dec 19, 2024
2 parents 1ddaf28 + 63bea68 commit 126f41e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/core/src/lib/util.ts
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ export async function execute(
if (log) {
log.debug(`Executing shell: ${joinedCmd}`);
}
return await execPromise(joinedCmd, {env: env, shell: true});
return await execPromise(joinedCmd, {env: env});
}

export async function executeFile(
Expand Down

0 comments on commit 126f41e

Please sign in to comment.