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
|
minRlimit = 1024
|
||||||
)
|
)
|
||||||
|
|
||||||
var authors = []cli.Author{
|
|
||||||
{
|
|
||||||
Name: "@crosbymichael",
|
|
||||||
Email: "crosbymichael@gmail.com",
|
|
||||||
},
|
|
||||||
}
|
|
||||||
|
|
||||||
var daemonFlags = []cli.Flag{
|
var daemonFlags = []cli.Flag{
|
||||||
cli.StringFlag{
|
cli.StringFlag{
|
||||||
Name: "id",
|
Name: "id",
|
||||||
|
@ -80,7 +73,6 @@ func main() {
|
||||||
app.Name = "containerd"
|
app.Name = "containerd"
|
||||||
app.Version = containerd.Version
|
app.Version = containerd.Version
|
||||||
app.Usage = usage
|
app.Usage = usage
|
||||||
app.Authors = authors
|
|
||||||
app.Flags = daemonFlags
|
app.Flags = daemonFlags
|
||||||
app.Before = func(context *cli.Context) error {
|
app.Before = func(context *cli.Context) error {
|
||||||
if context.GlobalBool("debug") {
|
if context.GlobalBool("debug") {
|
||||||
|
|
|
@ -16,12 +16,6 @@ func main() {
|
||||||
app.Name = "ctr"
|
app.Name = "ctr"
|
||||||
app.Version = containerd.Version
|
app.Version = containerd.Version
|
||||||
app.Usage = usage
|
app.Usage = usage
|
||||||
app.Authors = []cli.Author{
|
|
||||||
{
|
|
||||||
Name: "@crosbymichael",
|
|
||||||
Email: "crosbymichael@gmail.com",
|
|
||||||
},
|
|
||||||
}
|
|
||||||
app.Flags = []cli.Flag{
|
app.Flags = []cli.Flag{
|
||||||
cli.BoolFlag{
|
cli.BoolFlag{
|
||||||
Name: "debug",
|
Name: "debug",
|
||||||
|
|
Loading…
Reference in a new issue