Skip to content

Commit

Permalink
Update command line help message
Browse files Browse the repository at this point in the history
  • Loading branch information
smikitky committed Apr 4, 2024
1 parent e1c6891 commit 130063d
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,9 @@ const main = async () => {
if (args.help || args._args.length < 1) {
if (args._args.length < 1)
console.log(pc.red('No input files are specified.'));
console.log(pc.yellow('Usage: chatgpt-md-translator [options] <file>'));
console.log(
pc.yellow('Usage: chatgpt-md-translator [options] <file> [<file>...]')
);
console.log(parser.help());
console.log('Docs: https://github.com/smikitky/chatgpt-md-translator\n');
return;
Expand Down

0 comments on commit 130063d

Please sign in to comment.