mirror of
https://github.com/FiloSottile/mkcert.git
synced 2026-04-25 13:36:02 +03:00
[GH-ISSUE #196] Silent [No verbose] #126
Labels
No labels
TLS stack issue
Windows
bug
duplicate
duplicate
enhancement
help wanted
help wanted
pull-request
question
question
root store
waiting for info
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/mkcert#126
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @Krato on GitHub (Aug 31, 2019).
Original GitHub issue: https://github.com/FiloSottile/mkcert/issues/196
Hello, first thanks for this amazing tool.
I'm developing a bash file to create vhosts for my mac environment. I'm able to create a cert using mkcert, but the terminal shows all the ouput of mkcert.
There is an option to hide the ouput?
Thanks!
@FiloSottile commented on GitHub (Sep 10, 2019):
mkcert simply sends output to stderr, so if you want to hide it in a script, you can use
2> /dev/nulland check the exit code to make sure there were no errors.