From b5bdeb0237708ac154ea99343c7d66b7c4d50e01 Mon Sep 17 00:00:00 2001 From: Alexander Date: Wed, 1 Jun 2022 16:15:28 +0200 Subject: [PATCH 1/2] Update README.md Replace `go get` with `go install` since get is no longer supported. ```PS C:\Users\Alexander> go get github.com/mitchellh/gox go: go.mod file not found in current directory or any parent directory. 'go get' is no longer supported outside a module. To build and install a command, use 'go install' with a version, like 'go install example.com/cmd@latest' For more information, see https://golang.org/doc/go-get-install-deprecation or run 'go help get' or 'go help install'. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index cb3f27d..29782ff 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ To install Gox, please use `go get`. We tag versions so feel free to checkout that tag and compile. ``` -$ go get github.com/mitchellh/gox +$ go install github.com/mitchellh/gox ... $ gox -h ... From a1d1daf5a2c1c0acad226862d49e62995bdad5e6 Mon Sep 17 00:00:00 2001 From: Alexander Date: Wed, 1 Jun 2022 16:16:16 +0200 Subject: [PATCH 2/2] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 29782ff..378f63f 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ To install Gox, please use `go get`. We tag versions so feel free to checkout that tag and compile. ``` -$ go install github.com/mitchellh/gox +$ go install github.com/mitchellh/gox@latest ... $ gox -h ...