Align version output with other docker tools

```
$ docker-compose -v
docker-compose version 1.5.2, build 7240ff3

$ docker -v
Docker version 1.9.1, build a34a1d5
```

Signed-off-by: Pavel Strashkin <pavel.strashkin@gmail.com>
This commit is contained in:
Pavel Strashkin 2015-12-07 10:11:19 -08:00 committed by Pavel Strashkin
parent 7f499308fc
commit 98cf2856db
1 changed files with 1 additions and 1 deletions

View File

@ -12,5 +12,5 @@ var (
// FullVersion formats the version to be printed
func FullVersion() string {
return fmt.Sprintf("%s ( %s )", Version, GitCommit)
return fmt.Sprintf("%s, build %s", Version, GitCommit)
}