diff options
author | Kim "BKC" Carlbäcker <kim.carlbacker@gmail.com> | 2016-08-30 13:57:58 +0200 |
---|---|---|
committer | 无闻 <u@gogs.io> | 2016-08-30 04:57:58 -0700 |
commit | 4f4001913015cbdb5053960a2c750dc010d414da (patch) | |
tree | fc9ca8d7f271e81384d7877d62ceacc3124c731d /cmd | |
parent | 780cc2d11093e048e41f2d6da9d76f6c6ac4a5e2 (diff) | |
download | gitea-4f4001913015cbdb5053960a2c750dc010d414da.tar.gz gitea-4f4001913015cbdb5053960a2c750dc010d414da.zip |
codegangsta/cli => urfave/cli (#3546)
Diffstat (limited to 'cmd')
-rw-r--r-- | cmd/admin.go | 2 | ||||
-rw-r--r-- | cmd/cert_stub.go | 2 | ||||
-rw-r--r-- | cmd/cmd.go | 2 | ||||
-rw-r--r-- | cmd/dump.go | 2 | ||||
-rw-r--r-- | cmd/serve.go | 2 | ||||
-rw-r--r-- | cmd/update.go | 2 | ||||
-rw-r--r-- | cmd/web.go | 2 |
7 files changed, 7 insertions, 7 deletions
diff --git a/cmd/admin.go b/cmd/admin.go index 5202301d26..bad36b1c85 100644 --- a/cmd/admin.go +++ b/cmd/admin.go @@ -7,7 +7,7 @@ package cmd import ( "fmt" - "github.com/codegangsta/cli" + "github.com/urfave/cli" "github.com/gogits/gogs/models" "github.com/gogits/gogs/modules/setting" diff --git a/cmd/cert_stub.go b/cmd/cert_stub.go index 78e84e8c04..1c076f6495 100644 --- a/cmd/cert_stub.go +++ b/cmd/cert_stub.go @@ -10,7 +10,7 @@ import ( "fmt" "os" - "github.com/codegangsta/cli" + "github.com/urfave/cli" ) var CmdCert = cli.Command{ diff --git a/cmd/cmd.go b/cmd/cmd.go index 8df02d5c7e..29afa625d3 100644 --- a/cmd/cmd.go +++ b/cmd/cmd.go @@ -7,7 +7,7 @@ package cmd import ( "time" - "github.com/codegangsta/cli" + "github.com/urfave/cli" ) func stringFlag(name, value, usage string) cli.StringFlag { diff --git a/cmd/dump.go b/cmd/dump.go index b2a5815f32..c1361f9328 100644 --- a/cmd/dump.go +++ b/cmd/dump.go @@ -14,7 +14,7 @@ import ( "io/ioutil" "github.com/Unknwon/cae/zip" - "github.com/codegangsta/cli" + "github.com/urfave/cli" "github.com/gogits/gogs/models" "github.com/gogits/gogs/modules/setting" diff --git a/cmd/serve.go b/cmd/serve.go index fbae10fd84..53d33b2edd 100644 --- a/cmd/serve.go +++ b/cmd/serve.go @@ -14,9 +14,9 @@ import ( "time" "github.com/Unknwon/com" - "github.com/codegangsta/cli" git "github.com/gogits/git-module" gouuid "github.com/satori/go.uuid" + "github.com/urfave/cli" "github.com/gogits/gogs/models" "github.com/gogits/gogs/modules/base" diff --git a/cmd/update.go b/cmd/update.go index 08d5d89e10..bebc101609 100644 --- a/cmd/update.go +++ b/cmd/update.go @@ -7,7 +7,7 @@ package cmd import ( "os" - "github.com/codegangsta/cli" + "github.com/urfave/cli" "github.com/gogits/gogs/models" "github.com/gogits/gogs/modules/log" diff --git a/cmd/web.go b/cmd/web.go index 829607ee0e..3a1108a45c 100644 --- a/cmd/web.go +++ b/cmd/web.go @@ -15,7 +15,6 @@ import ( "path" "strings" - "github.com/codegangsta/cli" "github.com/go-macaron/binding" "github.com/go-macaron/cache" "github.com/go-macaron/captcha" @@ -26,6 +25,7 @@ import ( "github.com/go-macaron/toolbox" "github.com/go-xorm/xorm" "github.com/mcuadros/go-version" + "github.com/urfave/cli" "gopkg.in/ini.v1" "gopkg.in/macaron.v1" |