From a7634b5d7c7dba93d9010fcac8f7a95d0c47c2cf Mon Sep 17 00:00:00 2001 From: Oskar Roesler Date: Thu, 24 Nov 2022 18:48:37 +0100 Subject: [PATCH 1/2] Fix build instructions on latest go versions. Using go get for installation is deprecated. Advise to run go install for this. --- docs/installation-building.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/installation-building.md b/docs/installation-building.md index 0bc1fc00..844adeff 100644 --- a/docs/installation-building.md +++ b/docs/installation-building.md @@ -45,6 +45,7 @@ These commands will install the binary as `$GOPATH/bin/carbon-relay-ng` # e.g. to check out a specific version instead of master: # git checkout v1.1 go get github.com/shuLhan/go-bindata/cmd/go-bindata + go install github.com/shuLhan/go-bindata/cmd/go-bindata make From ef5d8537f16810f5902e4dfcce0e3d32dd754516 Mon Sep 17 00:00:00 2001 From: Nico Pazos <32206519+npazosmendez@users.noreply.github.com> Date: Thu, 13 Jun 2024 16:15:42 -0300 Subject: [PATCH 2/2] Update docs/installation-building.md --- docs/installation-building.md | 1 - 1 file changed, 1 deletion(-) diff --git a/docs/installation-building.md b/docs/installation-building.md index 844adeff..5cfb9a92 100644 --- a/docs/installation-building.md +++ b/docs/installation-building.md @@ -44,7 +44,6 @@ These commands will install the binary as `$GOPATH/bin/carbon-relay-ng` cd carbon-relay-ng # e.g. to check out a specific version instead of master: # git checkout v1.1 - go get github.com/shuLhan/go-bindata/cmd/go-bindata go install github.com/shuLhan/go-bindata/cmd/go-bindata make