git » remoteu2f » commit 5a14783

Update codegangsta/cli -> urfave/cli

author Alberto Bertogli
2020-04-04 14:59:13 UTC
committer Alberto Bertogli
2020-04-04 14:59:13 UTC
parent 3381a9511b5c335d2fee246c7dcc65fb1717b5b1

Update codegangsta/cli -> urfave/cli

The github.com/codegangsta/cli package is now github.com/urfave/cli,
this patch updates the import path accordingly.

.travis.yml +1 -1
remoteu2f-cli/main.go +1 -1

diff --git a/.travis.yml b/.travis.yml
index 3602e00..0398420 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -16,7 +16,7 @@ env:
 
 install:
     # Install dependencies, found with "glide list".
-    - go get github.com/codegangsta/cli
+    - go get github.com/urfave/cli
     - go get github.com/golang/glog
     - go get github.com/golang/protobuf/proto
     - go get github.com/gorilla/mux
diff --git a/remoteu2f-cli/main.go b/remoteu2f-cli/main.go
index 0eefe56..e7be6ce 100644
--- a/remoteu2f-cli/main.go
+++ b/remoteu2f-cli/main.go
@@ -9,7 +9,7 @@ import (
 	"sort"
 	"strings"
 
-	"github.com/codegangsta/cli"
+	"github.com/urfave/cli"
 
 	"blitiri.com.ar/go/remoteu2f/internal/client"
 )