From df3718a06c90858a6dcb9386225ed9dbe0f02d25 Mon Sep 17 00:00:00 2001 From: Brendan Le Glaunec Date: Wed, 12 Aug 2020 09:10:29 +0200 Subject: [PATCH] Remove /v5 in module path in documentation --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index cedeb2c..d315726 100644 --- a/README.md +++ b/README.md @@ -84,7 +84,7 @@ Only use this solution if for some reason using docker is not an option for you ### Steps to install -1. `go get github.com/Ullaakut/cameradar/v5` +1. `go get github.com/Ullaakut/cameradar` 2. `cd $GOPATH/src/github.com/Ullaakut/cameradar` 3. `cd cmd/cameradar` 4. `go install` @@ -213,7 +213,7 @@ Your image will be called `cameradar` and NOT `ullaakut/cameradar`. #### Go build -1. `go get github.com/Ullaakut/cameradar/v5` +1. `go get github.com/Ullaakut/cameradar` 2. `cd $GOPATH/src/github.com/Ullaakut/cameradar` 3. `cd cmd/cameradar` 4. `go install` @@ -236,7 +236,7 @@ You can still find it under the 1.1.4 tag on this repo, however it was slower an > How to use the Cameradar library for my own project? -See the example in `/cmd/cameradar`. You just need to run `go get github.com/Ullaakut/cameradar/v5` and to use the `cameradar` package in your code. You can find the documentation on [godoc](https://godoc.org/github.com/ullaakut/cameradar). +See the example in `/cmd/cameradar`. You just need to run `go get github.com/Ullaakut/cameradar` and to use the `cameradar` package in your code. You can find the documentation on [godoc](https://godoc.org/github.com/ullaakut/cameradar). > I want to scan my own localhost for some reason, and it does not work! What's going on?