Skip to content
This repository has been archived by the owner on Jan 20, 2023. It is now read-only.

Commit

Permalink
fix(package): update execa to version 2.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
greenkeeper[bot] authored and pvdlg committed Oct 2, 2019
1 parent a004940 commit 608cd55
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/verify.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ module.exports = async (pluginConfig, context) => {
errors.push(getError('ENOAPMTOKEN'));
}

if ((await execa('apm', ['-v'], {reject: false, cwd, env})).code !== 0) {
if ((await execa('apm', ['-v'], {reject: false, cwd, env})).exitCode !== 0) {
errors.push(getError('ENOAPMCLI'));
}

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
"dependencies": {
"@semantic-release/error": "^2.2.0",
"aggregate-error": "^3.0.0",
"execa": "^1.0.0",
"execa": "^2.0.2",
"npm": "^6.4.1",
"read-pkg": "^5.0.0"
},
Expand Down

0 comments on commit 608cd55

Please sign in to comment.