Remove authors from cli

Signed-off-by: Michael Crosby <crosbymichael@gmail.com>
This commit is contained in:
Michael Crosby 2016-01-25 15:15:35 -08:00
parent 5bfd26b044
commit 1ade1f6d81
2 changed files with 0 additions and 14 deletions

View file

@ -28,13 +28,6 @@ const (
minRlimit = 1024
)
var authors = []cli.Author{
{
Name: "@crosbymichael",
Email: "crosbymichael@gmail.com",
},
}
var daemonFlags = []cli.Flag{
cli.StringFlag{
Name: "id",
@ -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") {

View file

@ -16,12 +16,6 @@ func main() {
app.Name = "ctr"
app.Version = containerd.Version
app.Usage = usage
app.Authors = []cli.Author{
{
Name: "@crosbymichael",
Email: "crosbymichael@gmail.com",
},
}
app.Flags = []cli.Flag{
cli.BoolFlag{
Name: "debug",