Skip to content

Commit

Permalink
exit with code 1 in case of any errors, remove no longer used env var…
Browse files Browse the repository at this point in the history
… for testing. relates to architect/architect#1156
  • Loading branch information
filmaj committed Jun 7, 2021
1 parent eefec54 commit 87fe6bf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"scripts": {
"lint": "eslint . --fix",
"test": "npm run lint && npm run coverage",
"test:unit": "cross-env FUSE=0 tape 'test/unit/**/*-test.js' | tap-spec",
"test:unit": "cross-env tape 'test/unit/**/*-test.js' | tap-spec",
"coverage": "cross-env nyc --reporter=lcov --reporter=text npm run test:unit",
"test:integration": "cross-env tape test/integration/**/*-test.js | tap-spec",
"rc": "npm version prerelease --preid RC"
Expand Down
1 change: 1 addition & 0 deletions src/cli.js
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,7 @@ async function main (args) {
else {
update.error(err)
}
process.exit(1)
}
}

Expand Down

0 comments on commit 87fe6bf

Please sign in to comment.