From e4fc68c63ecdd2c732eb6024a39b73f9f19cdffa Mon Sep 17 00:00:00 2001 From: Evgeniy Kulikov Date: Tue, 19 Nov 2019 10:36:13 +0300 Subject: [PATCH] Fix wrong url for v2 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Repo not found for `github.com/urfave/cli.v2` ``` → go get github.com/urfave/cli.v2 go get github.com/urfave/cli.v2: git ls-remote -q origin in $GOPATH/pkg/mod/cache/vcs/f2d73ffea2d87a2720e81700b9dcf7285d8c2e5750a4b4c55dff989e537a7c8e: exit status 128: remote: Repository not found. fatal: repository 'https://github.com/urfave/cli.v2/' not found ``` Correct path `github.com/urfave/cli/v2` ``` → go get github.com/urfave/cli/v2 go: finding github.com/urfave/cli/v2 v2.0.0-alpha.2 go: downloading github.com/urfave/cli/v2 v2.0.0-alpha.2 go: extracting github.com/urfave/cli/v2 v2.0.0-alpha.2 ``` --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index ffb9e2e..3a944f5 100644 --- a/README.md +++ b/README.md @@ -25,7 +25,7 @@ Usage documentation exists for each major version. Don't know what version you'r **Warning**: `v2` is in a beta state. ``` -$ go get github.com/urfave/cli.v2 +$ go get github.com/urfave/cli/v2 ``` ```go