Skip to content

Commit

Permalink
Merge branch 'postmanlabs:develop' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
AbdulRafey612 authored Mar 14, 2022
2 parents ce99231 + a5018ec commit 0c99b1b
Show file tree
Hide file tree
Showing 4 changed files with 282 additions and 6,627 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
5.3.2:
date: 2022-03-03
fixed bugs:
- Allow the process to exit naturally in CLI mode
chores:
- Updated dependencies

5.3.1:
date: 2022-01-10
chores:
Expand Down
2 changes: 1 addition & 1 deletion bin/newman.js
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ program
console.error(`error: ${err.message || err}\n`);
err.friendly && console.error(` ${err.friendly}\n`);
}
runError && !_.get(options, 'suppressExitCode') && process.exit(1);
runError && !_.get(options, 'suppressExitCode') && (process.exitCode = 1);
});
});

Expand Down
Loading

0 comments on commit 0c99b1b

Please sign in to comment.