Skip to content

Commit

Permalink
Hide out-suffix option from '--help'
Browse files Browse the repository at this point in the history
  • Loading branch information
smikitky committed Apr 3, 2024
1 parent de4795c commit 4d7fe90
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,12 @@ const options = [
{ names: ['interval', 'i'], type: 'number', help: 'API call interval.' },
{ names: ['quiet', 'q'], type: 'bool', help: 'Suppress status messages.' },
{ names: ['out', 'o'], type: 'string', help: 'Output file.' },
{ names: ['out-suffix'], type: 'string', help: 'Output file suffix.' },
{
names: ['out-suffix'],
type: 'string',
help: 'Output file suffix.',
hidden: true
},
{ names: ['help', 'h'], type: 'bool', help: 'Print this help.' }
];

Expand Down

0 comments on commit 4d7fe90

Please sign in to comment.