Update references to urfave/cli

This commit is contained in:
Adrian Macneil 2016-08-15 23:13:50 -07:00
parent 6bbffde52c
commit dec6892128
23 changed files with 8 additions and 8 deletions

10
Godeps/Godeps.json generated
View file

@ -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"
}
]
}

View file

@ -3,7 +3,7 @@ package main
import (
"database/sql"
"fmt"
"github.com/codegangsta/cli"
"github.com/urfave/cli"
"io/ioutil"
"net/url"
"os"

View file

@ -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"

View file

@ -2,8 +2,8 @@ package main
import (
"fmt"
"github.com/codegangsta/cli"
"github.com/joho/godotenv"
"github.com/urfave/cli"
"log"
"os"
)