Fix erroneous build instructions (#230)

This commit is contained in:
Brendan Le Glaunec
2019-06-27 07:23:52 +02:00
committed by GitHub
parent 0738d08966
commit 966266f742
+3 -3
View File
@@ -88,7 +88,7 @@ Make sure you installed the [dependencies](#dependencies), **and that you have G
2. `go get github.com/ullaakut/cameradar` 2. `go get github.com/ullaakut/cameradar`
3. `cd $GOPATH/src/github.com/ullaakut/cameradar` 3. `cd $GOPATH/src/github.com/ullaakut/cameradar`
4. `cd cmd/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). 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` 2. `go get github.com/ullaakut/cameradar`
3. `cd $GOPATH/src/github.com/ullaakut/cameradar` 3. `cd $GOPATH/src/github.com/ullaakut/cameradar`
4. `cd cmd/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. See [the contribution document](/CONTRIBUTING.md) to get started.