Commit 6649e9d
authored
Make explicit "mkcert -help" print to stdout (#265)
Currently "mkcert -help" prints to stderr, which is rather annoying as:
$ mkcert -help | less
Gives us a blank page, as it pipes only stdout. To get any results in
less I need to use:
$ mkcert 2>&1 | less
$ mkcert |& less # Non-standard bash/ zsh
Since the user explicitly asked for help with -help, it doesn't make
much sense to output it to stderr IMHO.1 parent 3fa4d18 commit 6649e9d
1 file changed
+2
-2
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
106 | 106 | | |
107 | 107 | | |
108 | 108 | | |
109 | | - | |
110 | | - | |
| 109 | + | |
| 110 | + | |
111 | 111 | | |
112 | 112 | | |
113 | 113 | | |
| |||
0 commit comments