mirror of https://github.com/docker/compose.git
Fix json format for version command
Signed-off-by: Victor Timofei <victor@vtimothy.com>
This commit is contained in:
parent
0ef4b90fae
commit
9054f6a18b
|
@ -57,7 +57,7 @@ func runVersion(opts versionOptions) {
|
|||
return
|
||||
}
|
||||
if opts.format == formatter.JSON {
|
||||
fmt.Printf(`{"version":%q}\n`, internal.Version)
|
||||
fmt.Printf("{\"version\":%q}\n", internal.Version)
|
||||
return
|
||||
}
|
||||
fmt.Println("Docker Compose version", internal.Version)
|
||||
|
|
Loading…
Reference in New Issue