Merge pull request #1715 from thaJeztah/nit-fix-printf

Align version output and minor code cleanup
This commit is contained in:
Kenfe-Mickaël Laventure 2017-11-03 10:08:57 -07:00 committed by GitHub
commit ab67fd50dc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -9,14 +9,14 @@ import (
"github.com/urfave/cli" "github.com/urfave/cli"
) )
// Command is a cli ommand to output the client and containerd server version // Command is a cli command to output the client and containerd server version
var Command = cli.Command{ var Command = cli.Command{
Name: "version", Name: "version",
Usage: "print the client and server versions", Usage: "print the client and server versions",
Action: func(context *cli.Context) error { Action: func(context *cli.Context) error {
fmt.Println("Client:") fmt.Println("Client:")
fmt.Printf(" Version: %s\n", version.Version) fmt.Println(" Version: ", version.Version)
fmt.Printf(" Revision: %s\n", version.Revision) fmt.Println(" Revision:", version.Revision)
fmt.Println("") fmt.Println("")
client, ctx, cancel, err := commands.NewClient(context) client, ctx, cancel, err := commands.NewClient(context)
if err != nil { if err != nil {
@ -28,13 +28,13 @@ var Command = cli.Command{
return err return err
} }
fmt.Println("Server:") fmt.Println("Server:")
fmt.Printf(" Version: %s\n", v.Version) fmt.Println(" Version: ", v.Version)
fmt.Printf(" Revision: %s\n", v.Revision) fmt.Println(" Revision:", v.Revision)
if v.Version != version.Version { if v.Version != version.Version {
fmt.Fprintf(os.Stderr, "WARNING: version mismatch\n") fmt.Fprintln(os.Stderr, "WARNING: version mismatch")
} }
if v.Revision != version.Revision { if v.Revision != version.Revision {
fmt.Fprintf(os.Stderr, "WARNING: revision mismatch\n") fmt.Fprintln(os.Stderr, "WARNING: revision mismatch")
} }
return nil return nil
}, },