Skip to content

Commit f81eec3

Browse files
authored
Merge pull request #18 from infosiftr/update-mods
Update Go dependencies
2 parents 5efa400 + e609341 commit f81eec3

File tree

14 files changed

+40
-24
lines changed

14 files changed

+40
-24
lines changed

cmd/bashbrew/cmd-build.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
func cmdBuild(c *cli.Context) error {

cmd/bashbrew/cmd-cat.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import (
77
"strings"
88
"text/template"
99

10-
"github.com/codegangsta/cli"
10+
"github.com/urfave/cli"
1111
"github.com/docker-library/bashbrew/manifest"
1212
"github.com/docker-library/bashbrew/pkg/templatelib"
1313
)

cmd/bashbrew/cmd-deps.go

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

8-
"github.com/codegangsta/cli"
8+
"github.com/urfave/cli"
99
"pault.ag/go/topsort"
1010

1111
"github.com/docker-library/bashbrew/manifest"

cmd/bashbrew/cmd-from.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import (
44
"fmt"
55
"strings"
66

7-
"github.com/codegangsta/cli"
7+
"github.com/urfave/cli"
88
)
99

1010
func cmdFrom(c *cli.Context) error {

cmd/bashbrew/cmd-list.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import (
44
"fmt"
55
"path"
66

7-
"github.com/codegangsta/cli"
7+
"github.com/urfave/cli"
88
"github.com/docker-library/bashbrew/manifest"
99
)
1010

cmd/bashbrew/cmd-push.go

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

9-
"github.com/codegangsta/cli"
9+
"github.com/urfave/cli"
1010
)
1111

1212
func cmdPush(c *cli.Context) error {

cmd/bashbrew/cmd-put-shared.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import (
77
"strings"
88
"time"
99

10-
"github.com/codegangsta/cli"
10+
"github.com/urfave/cli"
1111

1212
"github.com/docker-library/bashbrew/architecture"
1313
"github.com/docker-library/bashbrew/manifest"

cmd/bashbrew/cmd-tag.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import (
44
"fmt"
55
"path"
66

7-
"github.com/codegangsta/cli"
7+
"github.com/urfave/cli"
88
)
99

1010
func cmdTag(c *cli.Context) error {

cmd/bashbrew/config.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88
"os"
99
"strings"
1010

11-
"github.com/codegangsta/cli"
11+
"github.com/urfave/cli"
1212
"github.com/docker-library/bashbrew/pkg/stripper"
1313
"pault.ag/go/debian/control"
1414
)

cmd/bashbrew/docker.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import (
1313
"strconv"
1414
"strings"
1515

16-
"github.com/codegangsta/cli"
16+
"github.com/urfave/cli"
1717
"github.com/docker-library/bashbrew/manifest"
1818
)
1919

0 commit comments

Comments
 (0)