Skip to content

Commit 6579bb3

Browse files
greenkeeper[bot]pvdlg
authored andcommitted
fix(package): update execa to version 2.0.2
1 parent 0e19531 commit 6579bb3

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lib/exec.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ module.exports = async (cmdProp, {shell, execCwd, ...config}, {cwd, env, stdout,
88

99
logger.log('Call script %s', script);
1010

11-
const result = execa.shell(script, {shell, cwd: execCwd ? path.resolve(cwd, execCwd) : cwd, env});
11+
const result = execa(script, {shell: shell || true, cwd: execCwd ? path.resolve(cwd, execCwd) : cwd, env});
1212

1313
result.stdout.pipe(
1414
stdout,

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"@semantic-release/error": "^2.1.0",
1515
"aggregate-error": "^3.0.0",
1616
"debug": "^4.0.0",
17-
"execa": "^1.0.0",
17+
"execa": "^2.0.2",
1818
"lodash": "^4.17.4",
1919
"parse-json": "^5.0.0"
2020
},

0 commit comments

Comments
 (0)