mirror of
https://github.com/ruby/ruby.git
synced 2026-08-01 02:20:48 +08:00
(https://github.com/ruby/erb/pull/126) Fixes the `Unknown switch: "-h"` error message when running `erb -h`: ```sh-session $ libexec/erb -h 2>&1 | head -3 Unknown switch: "-h" Usage: erb [options] [filepaths] ``` The short `-h` option is already documented in the help message: ```sh-session $ libexec/erb --help 2>&1 | grep 'help' -h --help Print this text and exit. ``` https://github.com/ruby/erb/commit/0f9a6d6a7a