diff --git a/Godeps/Godeps.json b/Godeps/Godeps.json index 743f0b3..1953c36 100644 --- a/Godeps/Godeps.json +++ b/Godeps/Godeps.json @@ -3,11 +3,6 @@ "GoVersion": "go1.6", "GodepVersion": "v74", "Deps": [ - { - "ImportPath": "github.com/codegangsta/cli", - "Comment": "v1.18.0-47-g168c954", - "Rev": "168c95418e66e019fe17b8f4f5c45aa62ff80e23" - }, { "ImportPath": "github.com/davecgh/go-spew/spew", "Rev": "5215b55f46b2b919f50a1df0eaa5886afe4e3b3d" @@ -50,6 +45,11 @@ "ImportPath": "github.com/stretchr/testify/require", "Comment": "v1.1.3-19-gd77da35", "Rev": "d77da356e56a7428ad25149ca77381849a6a5232" + }, + { + "ImportPath": "github.com/urfave/cli", + "Comment": "v1.18.0-47-g168c954", + "Rev": "168c95418e66e019fe17b8f4f5c45aa62ff80e23" } ] } diff --git a/commands.go b/commands.go index 8e5167a..f5b4e0c 100644 --- a/commands.go +++ b/commands.go @@ -3,7 +3,7 @@ package main import ( "database/sql" "fmt" - "github.com/codegangsta/cli" + "github.com/urfave/cli" "io/ioutil" "net/url" "os" diff --git a/commands_test.go b/commands_test.go index 87330c1..27cff59 100644 --- a/commands_test.go +++ b/commands_test.go @@ -2,8 +2,8 @@ package main import ( "flag" - "github.com/codegangsta/cli" "github.com/stretchr/testify/require" + "github.com/urfave/cli" "net/url" "os" "path/filepath" diff --git a/main.go b/main.go index 6800231..1f971b1 100644 --- a/main.go +++ b/main.go @@ -2,8 +2,8 @@ package main import ( "fmt" - "github.com/codegangsta/cli" "github.com/joho/godotenv" + "github.com/urfave/cli" "log" "os" ) diff --git a/vendor/github.com/codegangsta/cli/.gitignore b/vendor/github.com/urfave/cli/.gitignore similarity index 100% rename from vendor/github.com/codegangsta/cli/.gitignore rename to vendor/github.com/urfave/cli/.gitignore diff --git a/vendor/github.com/codegangsta/cli/.travis.yml b/vendor/github.com/urfave/cli/.travis.yml similarity index 100% rename from vendor/github.com/codegangsta/cli/.travis.yml rename to vendor/github.com/urfave/cli/.travis.yml diff --git a/vendor/github.com/codegangsta/cli/CHANGELOG.md b/vendor/github.com/urfave/cli/CHANGELOG.md similarity index 100% rename from vendor/github.com/codegangsta/cli/CHANGELOG.md rename to vendor/github.com/urfave/cli/CHANGELOG.md diff --git a/vendor/github.com/codegangsta/cli/LICENSE b/vendor/github.com/urfave/cli/LICENSE similarity index 100% rename from vendor/github.com/codegangsta/cli/LICENSE rename to vendor/github.com/urfave/cli/LICENSE diff --git a/vendor/github.com/codegangsta/cli/README.md b/vendor/github.com/urfave/cli/README.md similarity index 100% rename from vendor/github.com/codegangsta/cli/README.md rename to vendor/github.com/urfave/cli/README.md diff --git a/vendor/github.com/codegangsta/cli/app.go b/vendor/github.com/urfave/cli/app.go similarity index 100% rename from vendor/github.com/codegangsta/cli/app.go rename to vendor/github.com/urfave/cli/app.go diff --git a/vendor/github.com/codegangsta/cli/appveyor.yml b/vendor/github.com/urfave/cli/appveyor.yml similarity index 100% rename from vendor/github.com/codegangsta/cli/appveyor.yml rename to vendor/github.com/urfave/cli/appveyor.yml diff --git a/vendor/github.com/codegangsta/cli/category.go b/vendor/github.com/urfave/cli/category.go similarity index 100% rename from vendor/github.com/codegangsta/cli/category.go rename to vendor/github.com/urfave/cli/category.go diff --git a/vendor/github.com/codegangsta/cli/cli.go b/vendor/github.com/urfave/cli/cli.go similarity index 100% rename from vendor/github.com/codegangsta/cli/cli.go rename to vendor/github.com/urfave/cli/cli.go diff --git a/vendor/github.com/codegangsta/cli/command.go b/vendor/github.com/urfave/cli/command.go similarity index 100% rename from vendor/github.com/codegangsta/cli/command.go rename to vendor/github.com/urfave/cli/command.go diff --git a/vendor/github.com/codegangsta/cli/context.go b/vendor/github.com/urfave/cli/context.go similarity index 100% rename from vendor/github.com/codegangsta/cli/context.go rename to vendor/github.com/urfave/cli/context.go diff --git a/vendor/github.com/codegangsta/cli/errors.go b/vendor/github.com/urfave/cli/errors.go similarity index 100% rename from vendor/github.com/codegangsta/cli/errors.go rename to vendor/github.com/urfave/cli/errors.go diff --git a/vendor/github.com/codegangsta/cli/flag-types.json b/vendor/github.com/urfave/cli/flag-types.json similarity index 100% rename from vendor/github.com/codegangsta/cli/flag-types.json rename to vendor/github.com/urfave/cli/flag-types.json diff --git a/vendor/github.com/codegangsta/cli/flag.go b/vendor/github.com/urfave/cli/flag.go similarity index 100% rename from vendor/github.com/codegangsta/cli/flag.go rename to vendor/github.com/urfave/cli/flag.go diff --git a/vendor/github.com/codegangsta/cli/flag_generated.go b/vendor/github.com/urfave/cli/flag_generated.go similarity index 100% rename from vendor/github.com/codegangsta/cli/flag_generated.go rename to vendor/github.com/urfave/cli/flag_generated.go diff --git a/vendor/github.com/codegangsta/cli/funcs.go b/vendor/github.com/urfave/cli/funcs.go similarity index 100% rename from vendor/github.com/codegangsta/cli/funcs.go rename to vendor/github.com/urfave/cli/funcs.go diff --git a/vendor/github.com/codegangsta/cli/generate-flag-types b/vendor/github.com/urfave/cli/generate-flag-types similarity index 100% rename from vendor/github.com/codegangsta/cli/generate-flag-types rename to vendor/github.com/urfave/cli/generate-flag-types diff --git a/vendor/github.com/codegangsta/cli/help.go b/vendor/github.com/urfave/cli/help.go similarity index 100% rename from vendor/github.com/codegangsta/cli/help.go rename to vendor/github.com/urfave/cli/help.go diff --git a/vendor/github.com/codegangsta/cli/runtests b/vendor/github.com/urfave/cli/runtests similarity index 100% rename from vendor/github.com/codegangsta/cli/runtests rename to vendor/github.com/urfave/cli/runtests