From f0e6830ec57033cd72892682d347985b9aa05468 Mon Sep 17 00:00:00 2001 From: Scott Anderson Date: Wed, 20 Sep 2023 12:12:40 -0600 Subject: [PATCH] update go get to go install for installing executables, closes influxdata/DAR#394 (#5148) --- content/enterprise_influxdb/v1/tools/inch.md | 2 +- content/influxdb/v1/tools/inch.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/content/enterprise_influxdb/v1/tools/inch.md b/content/enterprise_influxdb/v1/tools/inch.md index c71ed4d55..ecedb8c2a 100644 --- a/content/enterprise_influxdb/v1/tools/inch.md +++ b/content/enterprise_influxdb/v1/tools/inch.md @@ -18,7 +18,7 @@ Use the InfluxDB inch tool to simulate streaming data to InfluxDB and measure yo 1. To install `inch`, run the following command in your terminal: ```bash - $ go get github.com/influxdata/inch/cmd/inch + $ go install github.com/influxdata/inch/cmd/inch ``` 2. Verify `inch` is successfully installed in your `GOPATH/bin` (default on Unix `$HOME/go/bin`). diff --git a/content/influxdb/v1/tools/inch.md b/content/influxdb/v1/tools/inch.md index 52f5789c8..2ccb76be9 100644 --- a/content/influxdb/v1/tools/inch.md +++ b/content/influxdb/v1/tools/inch.md @@ -18,7 +18,7 @@ Use the InfluxDB inch tool to simulate streaming data to InfluxDB and measure yo 1. To install `inch`, run the following command in your terminal: ```bash - $ go get github.com/influxdata/inch/cmd/inch + $ go install github.com/influxdata/inch/cmd/inch ``` 2. Verify `inch` is successfully installed in your `GOPATH/bin` (default on Unix `$HOME/go/bin`).