Skip to content

Commit

Permalink
fix(package): update execa to version 2.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
greenkeeper[bot] authored and pvdlg committed Jun 25, 2019
1 parent 6f695d6 commit 271a8fa
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/exec.js
Expand Up @@ -8,7 +8,7 @@ module.exports = async (cmdProp, {shell, execCwd, ...config}, {cwd, env, stdout,

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

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

result.stdout.pipe(
stdout,
Expand Down
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -19,7 +19,7 @@
"@semantic-release/error": "^2.1.0",
"aggregate-error": "^3.0.0",
"debug": "^4.0.0",
"execa": "^1.0.0",
"execa": "^2.0.0",
"lodash": "^4.17.4",
"parse-json": "^4.0.0"
},
Expand Down

0 comments on commit 271a8fa

Please sign in to comment.