From 67937a675ec50b31dec0fcc550837e9c4ebd27f9 Mon Sep 17 00:00:00 2001 From: Alexey Velikiy Date: Wed, 7 Mar 2018 15:03:10 +0300 Subject: [PATCH] Documentation: path "~/go" to "$GOPATH" In "Install from source" section supposed that Grafana`s sources installed to `~/go` , but it is not always true. In other hand, `go get ..` command would install project to `$GOPATH` https://golang.org/cmd/go/#hdr-Download_and_install_packages_and_dependencies --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 81fb1f8d42b..9db746cc5ea 100644 --- a/README.md +++ b/README.md @@ -33,7 +33,7 @@ the latest master builds [here](https://grafana.com/grafana/download) ### Building the backend ```bash go get github.com/grafana/grafana -cd ~/go/src/github.com/grafana/grafana +cd $GOPATH/src/github.com/grafana/grafana go run build.go setup go run build.go build ```