| Currently, puppet man without any arguments generates an error message.
% be ./bin/puppet man |
Error: puppet man man takes 1 argument, but you gave 0 |
Error: Try 'puppet help man man' for usage
|
This should, instead, show the puppet man --help output.
% be ./bin/puppet man --help |
|
|
USAGE: puppet man <action> |
|
This subcommand displays manual pages for all Puppet subcommands. If the |
`ronn` gem (<https://github.com/rtomayko/ronn/>) is installed on your |
system, puppet man will display fully-formatted man pages. If `ronn` is not |
available, puppet man will display the raw (but human-readable) source text |
in a pager. |
|
OPTIONS: |
--render-as FORMAT - The rendering format to use. |
--verbose - Whether to log verbosely. |
--debug - Whether to log debug information. |
|
ACTIONS: |
man Display the manual page for a Puppet subcommand. |
|
See 'puppet man man' or 'man puppet-man' for full help.
|
|