From 63fefe0fb1b705447e1a773465e6931117528830 Mon Sep 17 00:00:00 2001 From: Wasseem Khayrattee Date: Sun, 3 Dec 2023 17:22:04 +0400 Subject: [PATCH] doc: Update README.md with Go >= v1.18.1 installation instructions - Added new section for Debian/Ubuntu users with Go version >= v1.18.1 - Modified installation command to use 'go install' with '@latest' tag - Addressed the deprecation of 'go get' for installing executables --- README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/README.md b/README.md index 33f43a0b..cce2265e 100644 --- a/README.md +++ b/README.md @@ -31,6 +31,12 @@ brew update && brew install mailhog Then, start MailHog by running `mailhog` in the command line. +#### Debian / Ubuntu Go >= v1.18.1 +```bash +sudo apt-get -y install golang-go +go install github.com/mailhog/MailHog@latest +``` + #### Debian / Ubuntu Go < v1.18 ```bash sudo apt-get -y install golang-go