File tree Expand file tree Collapse file tree 2 files changed +5
-1
lines changed
Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change 158158
159159- fix rendering of individual project files to stdout ([ #4052 ] ( https://github.com/quarto-dev/quarto-cli/issues/4052 ) ).
160160- fix previewing docusaurus project on Windows ([ #4312 ] ( https://github.com/quarto-dev/quarto-cli/issues/4312 ) ).
161+
162+ ## Other
163+
164+ - fix error when running the command ` quarto render -h ` to receive help ([ #3202 ] ( https://github.com/quarto-dev/quarto-cli/issues/3202 ) ).
Original file line number Diff line number Diff line change @@ -148,7 +148,7 @@ export const renderCommand = new Command()
148148 }
149149
150150 // show help if requested
151- if ( args . length > 0 && args [ 0 ] === "--help" ) {
151+ if ( args . length > 0 && args [ 0 ] === "--help" || args [ 0 ] === "-h" ) {
152152 renderCommand . showHelp ( ) ;
153153 return ;
154154 }
You can’t perform that action at this time.
0 commit comments