Revert "dockerversion placeholder for library-import"
This reverts commit d5cd032a86617249eadd7142227c5355ba9164b4. Commit caused issues on systems with case-insensitive filesystems. Revert for now Signed-off-by: Brian Goff <cpuguy83@gmail.com> Upstream-commit: b78ca243d9fc25d81c1b50008ee69f3e71e940f6 Component: engine
This commit is contained in:
@ -7,10 +7,10 @@ import (
|
||||
|
||||
"github.com/docker/docker/api"
|
||||
"github.com/docker/docker/api/types"
|
||||
"github.com/docker/docker/autogen/dockerversion"
|
||||
Cli "github.com/docker/docker/cli"
|
||||
flag "github.com/docker/docker/pkg/mflag"
|
||||
"github.com/docker/docker/utils"
|
||||
"github.com/docker/docker/version"
|
||||
)
|
||||
|
||||
var versionTemplate = `Client:
|
||||
@ -60,11 +60,11 @@ func (cli *DockerCli) CmdVersion(args ...string) (err error) {
|
||||
|
||||
vd := versionData{
|
||||
Client: types.Version{
|
||||
Version: version.VERSION,
|
||||
Version: dockerversion.VERSION,
|
||||
APIVersion: api.Version,
|
||||
GoVersion: runtime.Version(),
|
||||
GitCommit: version.GITCOMMIT,
|
||||
BuildTime: version.BUILDTIME,
|
||||
GitCommit: dockerversion.GITCOMMIT,
|
||||
BuildTime: dockerversion.BUILDTIME,
|
||||
Os: runtime.GOOS,
|
||||
Arch: runtime.GOARCH,
|
||||
Experimental: utils.ExperimentalBuild(),
|
||||
|
||||
Reference in New Issue
Block a user