Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how
* Support DSL `package-descriptor` (#124)
* Resolve the potential symlink to the bash script (#24, #125, and #126)
* Workaround for arguments that contain whitespaces (#128 and #129)
* Silent unnecessary Node's stacktrace (#134 and #136)

## 0.7.x
> Released Sep 08, 2022
Expand Down
2 changes: 1 addition & 1 deletion src/util.js
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ async function e_call(argv, script, ...args) {
resolve(code);
return;
}
throw 'Exit with code: ' + code;
process.exit(code);
});
});
}
Expand Down