Skip to content

Commit

Permalink
Merge branch '235'
Browse files Browse the repository at this point in the history
  • Loading branch information
yegor256 committed Feb 15, 2024
2 parents 447b634 + 9e413e8 commit c0e9c68
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/eoc.js
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,8 @@ program
.summary('EO command line toolkit')
.description('EO command-line toolkit (' + version.what + ' built on ' + version.when + ')')
.version(version.what, '-v, --version', 'Output the version number')
.helpOption('-?, --help', 'Print this help information');
.helpOption('-?, --help', 'Print this help information')
.configureHelp({sortOptions: true, sortSubcommands: true});

program
.option('-s, --sources <path>', 'Directory with .EO sources', '.')
Expand All @@ -79,7 +80,7 @@ program
.option('-b, --batch', 'Run in batch mode, suppress interactive messages')
.option('--no-color', 'Disable colorization of console messages')
.option('--track-optimization-steps', 'Save intermediate XMIR files')
.option('-c, --clean', 'Delete ./.eoc directory')
.option('-c, --clean', 'Delete .eoc directory before running a command')
.option('--debug', 'Print ALL debug messages, heavily overloading the log')
.option('--verbose', 'Print debug messages and full output of child processes');

Expand Down

0 comments on commit c0e9c68

Please sign in to comment.