SIGN IN SIGN UP
FiloSottile / mkcert UNCLAIMED

A simple zero-config tool to make locally trusted development certificates with any names you'd like.

0 0 37 Go

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.
M
Martin Tournoij committed
6649e9d2e72532139d0ecf6f39f24a30a688ca46
Parent: 3fa4d18
Committed by GitHub <noreply@github.com> on 10/25/2020, 11:55:09 PM