Skip to content

Commit

Permalink
Fix minor typo in CLI (#1115)
Browse files Browse the repository at this point in the history
  • Loading branch information
R4356th committed Mar 29, 2024
1 parent e15a892 commit 2f2db2e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cli.js
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ program.option('-c --config-file <file>', 'Use config file', function(configPath
});
program.option('--input-dir <dir>', 'Specify an input directory');
program.option('--output-dir <dir>', 'Specify an output directory');
program.option('--file-ext <text>', 'Specify an extension to be read, ex: html');
program.option('--file-ext <ext>', 'Specify an extension to be read, ex: html');
var content;
program.arguments('[files...]').action(function(files) {
content = files.map(readFile).join('');
Expand Down

0 comments on commit 2f2db2e

Please sign in to comment.