Remove authors from cli
Signed-off-by: Michael Crosby <crosbymichael@gmail.com>
This commit is contained in:
parent
5bfd26b044
commit
1ade1f6d81
2 changed files with 0 additions and 14 deletions
|
@ -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") {
|
||||
|
|
|
@ -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",
|
||||
|
|
Loading…
Reference in a new issue