From ea0804e4a9a6a2e0391d33364c3da9f1020ec3f1 Mon Sep 17 00:00:00 2001
From: Chris Reilly
Date: Mon, 21 Feb 2022 16:34:06 -0800
Subject: [PATCH] Fix install instructions for Go 1.17+
As of Go v1.17+ go get is no longer supported for installing executables. This changes the README to reflect that. For more info see: https://go.dev/doc/go-get-install-deprecation
---
README.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/README.md b/README.md
index eb90e88..eb8cfdf 100644
--- a/README.md
+++ b/README.md
@@ -22,7 +22,7 @@ The certificate will have a validity of 2 years and 30 days.
First, install the [Go tools](https://golang.org/dl/) and set up your `$GOPATH`.
Then, run:
-`go get github.com/jsha/minica`
+`go install github.com/jsha/minica@latest`
When using Go 1.11 or newer you don't need a $GOPATH and can instead do the
following: