From 966266f74251bbbe54b5505fb61c658e83425bad Mon Sep 17 00:00:00 2001 From: Brendan Le Glaunec Date: Thu, 27 Jun 2019 07:23:52 +0200 Subject: [PATCH] Fix erroneous build instructions (#230) --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 7503b3b..347ac6a 100644 --- a/README.md +++ b/README.md @@ -88,7 +88,7 @@ Make sure you installed the [dependencies](#dependencies), **and that you have G 2. `go get github.com/ullaakut/cameradar` 3. `cd $GOPATH/src/github.com/ullaakut/cameradar` 4. `cd cmd/cameradar` -5. `go build` +5. `go install` The `cameradar` binary is now in your `$GOPATH/bin` ready to be used. See command line options [here](#command-line-options). @@ -213,9 +213,9 @@ Make sure you installed the [dependencies](#dependencies), **and that you have G 2. `go get github.com/ullaakut/cameradar` 3. `cd $GOPATH/src/github.com/ullaakut/cameradar` 4. `cd cmd/cameradar` -5. `go build` +5. `go install` -The cameradar binary is now in the root of the directory. +The cameradar binary is now in `$GOPATH/bin/cameradar`. See [the contribution document](/CONTRIBUTING.md) to get started.