Skip to content

Commit

Permalink
Merge pull request #1970 from ctrlrsf/master
Browse files Browse the repository at this point in the history
Add additional go install step as go build doesn't install binaries
  • Loading branch information
otoolep committed Mar 16, 2015
2 parents 8023c5e + b810662 commit 21cbd84
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,11 @@ go get -u -f ./...
go build ./...
```

Once compilation completes, the binaries can be found in `$GOPATH/bin`. Please note that the InfluxDB binary is named `influxd`, not `influxdb`.
To then 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`.

```bash
go install ./...
```

To set the version and commit flags during the build pass the following to the build command:

Expand Down

0 comments on commit 21cbd84

Please sign in to comment.