Skip to content

Commit

Permalink
#342 show link
Browse files Browse the repository at this point in the history
  • Loading branch information
yegor256 committed Oct 13, 2024
1 parent 8edc8de commit 51940c5
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/commands/java/dataize.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ module.exports = function(obj, args, opts) {
console.debug('+ java ' + params.join(' '));
spawn('java', params, {stdio: 'inherit'}).on('close', (code) => {
if (code !== 0) {
console.error(`Java exited with #${code} code`);
console.error(`JVM failed with exit code #${code}`);
process.exit(1);
}
});
Expand Down
6 changes: 5 additions & 1 deletion src/eoc.js
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,11 @@ program
.name('eoc')
.usage('[options] command')
.summary('EO command line toolkit')
.description('EO command-line toolkit (' + version.what + ' built on ' + version.when + ')')
.description(
'EO command-line toolkit (' +
version.what + ' built on ' + version.when +
'): https://github.com/objectionary/eoc'
)
.version(version.what, '-v, --version', 'Output the version number')
.helpOption('-?, --help', 'Print this help information')
.configureHelp({sortOptions: true, sortSubcommands: true});
Expand Down

0 comments on commit 51940c5

Please sign in to comment.