From 26b87a7e2c507194061c8d5b2dc46be0c3c05e98 Mon Sep 17 00:00:00 2001 From: Bahtiyar Biksayev Date: Sun, 12 Jun 2022 05:06:04 +0300 Subject: [PATCH] Update README for go install post go 1.17 (#170) * tune README * tune --- README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/README.md b/README.md index 01bc695..5abfaf5 100644 --- a/README.md +++ b/README.md @@ -21,6 +21,12 @@ go get github.com/joho/godotenv ``` or if you want to use it as a bin command +go >= 1.17 +```shell +go install github.com/joho/godotenv/cmd/godotenv@latest +``` + +go < 1.17 ```shell go get github.com/joho/godotenv/cmd/godotenv ```