Skip to content

Commit

Permalink
Fix 'process.exit'; bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
brombal committed Jul 31, 2024
1 parent 40a0e4a commit 37d079d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion bin/just.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,6 @@ try {
);
} catch (err) {
if ('status' in err)
exit(err.status);
process.exit(err.status);
throw err;
}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "just-install",
"version": "2.0.1",
"version": "2.0.2",
"description": "Install the Just command runner (https://just.systems) as part of `npm install` (Mac/Linux/Windows).",
"main": "index.js",
"type": "module",
Expand Down

0 comments on commit 37d079d

Please sign in to comment.