From 57f564cd4bc16421dbbf7f1e44e46a8db6fa61e2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Alexandre=20Viana=20Marques?= <74380592+jalexandrevm@users.noreply.github.com> Date: Thu, 12 May 2022 20:56:10 -0300 Subject: [PATCH] Update README.md As a Ubuntu's user, to successfully run MailHog it was necessary to have git installed. Without it Go can't compile MailHog and the bin folder won't exist. So, I added a line to install git first before making go to get MailHog. Don't know if git is also necessary in others platforms, but would be better to make it a requirement for installing MailHog. --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 6973386f..6a23034a 100644 --- a/README.md +++ b/README.md @@ -34,6 +34,7 @@ Then, start MailHog by running `mailhog` in the command line. #### Debian / Ubuntu ```bash sudo apt-get -y install golang-go +sudo apt-get install git go get github.com/mailhog/MailHog ```