From a0dc8f598be5ec94ae5e7535efd27f753877e2e0 Mon Sep 17 00:00:00 2001 From: Spellchaser Date: Fri, 8 Jun 2018 14:46:00 -0400 Subject: [PATCH] fix go get tutorials for cmd change --- docs/installation-source.md | 2 +- docs/quick-start-docker.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/installation-source.md b/docs/installation-source.md index 0d17ec1561..45e8ca51d5 100644 --- a/docs/installation-source.md +++ b/docs/installation-source.md @@ -22,7 +22,7 @@ You may want to make the `GOPATH` setting persistent, by putting that export lin ## Build metrictank ``` -go get github.com/grafana/metrictank +go get github.com/grafana/metrictank/... ``` Take the file from `go/src/github.com/grafana/metrictank/metrictank-sample.ini`, put it in `/etc/metrictank/metrictank.ini` and make any changes. diff --git a/docs/quick-start-docker.md b/docs/quick-start-docker.md index 37c8d8f442..8070bcedae 100644 --- a/docs/quick-start-docker.md +++ b/docs/quick-start-docker.md @@ -11,7 +11,7 @@ You will also need to install version >=1.6 of [docker-compose](https://docs.doc If you already have go installed, you can just: ``` -go get github.com/grafana/metrictank +go get github.com/grafana/metrictank/... cd $GOPATH/src/github.com/grafana/metrictank ```