Skip to content

Commit

Permalink
Remove authors from cli
Browse files Browse the repository at this point in the history
Signed-off-by: Michael Crosby <[email protected]>
  • Loading branch information
crosbymichael committed Jan 25, 2016
1 parent 5bfd26b commit 1ade1f6
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 14 deletions.
8 changes: 0 additions & 8 deletions containerd/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -28,13 +28,6 @@ const (
minRlimit = 1024
)

var authors = []cli.Author{
{
Name: "@crosbymichael",
Email: "[email protected]",
},
}

var daemonFlags = []cli.Flag{
cli.StringFlag{
Name: "id",
Expand Down Expand Up @@ -80,7 +73,6 @@ func main() {
app.Name = "containerd"
app.Version = containerd.Version
app.Usage = usage
app.Authors = authors
app.Flags = daemonFlags
app.Before = func(context *cli.Context) error {
if context.GlobalBool("debug") {
Expand Down
6 changes: 0 additions & 6 deletions ctr/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,6 @@ func main() {
app.Name = "ctr"
app.Version = containerd.Version
app.Usage = usage
app.Authors = []cli.Author{
{
Name: "@crosbymichael",
Email: "[email protected]",
},
}
app.Flags = []cli.Flag{
cli.BoolFlag{
Name: "debug",
Expand Down

0 comments on commit 1ade1f6

Please sign in to comment.