Make it clear where `go install` puts the binaries

[ci skip]
pull/4769/merge
Philip O'Toole 2015-11-21 16:55:56 -08:00
parent 37818fbffc
commit 8fe2469c75
1 changed files with 2 additions and 2 deletions

View File

@ -127,11 +127,11 @@ cd $GOPATH/src/github.com/influxdb
go get -u -f -t ./...
```
To then build and install the binaries, run the following command. They can be found in `$GOPATH/bin`. Please note that the InfluxDB binary is named `influxd`, not `influxdb`.
To then build and install the binaries, run the following command.
```bash
go install ./...
```
The binaries will be located in `$GOPATH/bin`. Please note that the InfluxDB binary is named `influxd`, not `influxdb`.
To set the version and commit flags during the build pass the following to the **install** command: