make command help display consistent

Signed-off-by: Allen Sun <shlallen1990@gmail.com>
This commit is contained in:
Allen Sun
2017-09-22 15:29:09 +08:00
parent 709d34f882
commit d5b027c94b
14 changed files with 35 additions and 37 deletions

View File

@@ -52,7 +52,7 @@ var (
snapshotterFlags = []cli.Flag{
cli.StringFlag{
Name: "snapshotter",
Usage: "Snapshotter name. Empty value stands for the daemon default value.",
Usage: "snapshotter name. Empty value stands for the daemon default value.",
Value: containerd.DefaultSnapshotter,
},
}
@@ -60,11 +60,11 @@ var (
registryFlags = []cli.Flag{
cli.BoolFlag{
Name: "skip-verify,k",
Usage: "Skip SSL certificate validation",
Usage: "skip SSL certificate validation",
},
cli.BoolFlag{
Name: "plain-http",
Usage: "Allow connections using plain HTTP",
Usage: "allow connections using plain HTTP",
},
cli.StringFlag{
Name: "user,u",
@@ -72,7 +72,7 @@ var (
},
cli.StringFlag{
Name: "refresh",
Usage: "Refresh token for authorization server",
Usage: "refresh token for authorization server",
},
}
)