Skip to content

Commit eeff02a

Browse files
committed
Update from codegangsta to urfave
Signed-off-by: Michael Crosby <crosbymichael@gmail.com>
1 parent d47b9ef commit eeff02a

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

containerd/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ import (
1717
"google.golang.org/grpc/health/grpc_health_v1"
1818

1919
"github.com/Sirupsen/logrus"
20-
"github.com/codegangsta/cli"
20+
"github.com/urfave/cli"
2121
"github.com/cyberdelia/go-metrics-graphite"
2222
"github.com/containerd/containerd"
2323
grpcserver "github.com/containerd/containerd/api/grpc/server"

ctr/checkpoint_linux.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"os"
66
"text/tabwriter"
77

8-
"github.com/codegangsta/cli"
8+
"github.com/urfave/cli"
99
"github.com/containerd/containerd/api/grpc/types"
1010
netcontext "golang.org/x/net/context"
1111
)

ctr/checkpoint_solaris.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package main
33
import (
44
"fmt"
55

6-
"github.com/codegangsta/cli"
6+
"github.com/urfave/cli"
77
)
88

99
var checkpointSubCmds = []cli.Command{

ctr/container.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ import (
1616
"text/tabwriter"
1717
"time"
1818

19-
"github.com/codegangsta/cli"
19+
"github.com/urfave/cli"
2020
"github.com/containerd/containerd/api/grpc/types"
2121
"github.com/containerd/containerd/specs"
2222
"github.com/crosbymichael/console"

ctr/events.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import (
66
"text/tabwriter"
77
"time"
88

9-
"github.com/codegangsta/cli"
9+
"github.com/urfave/cli"
1010
"github.com/containerd/containerd/api/grpc/types"
1111
"github.com/golang/protobuf/ptypes"
1212
netcontext "golang.org/x/net/context"

ctr/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88
netcontext "golang.org/x/net/context"
99

1010
"github.com/Sirupsen/logrus"
11-
"github.com/codegangsta/cli"
11+
"github.com/urfave/cli"
1212
"github.com/containerd/containerd"
1313
"github.com/containerd/containerd/api/grpc/types"
1414
)

0 commit comments

Comments
 (0)