mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
![Sebastiaan van Stijn](/assets/img/avatar_default.png)
These checks were added when we required a specific version of containerd and runc (different versions were known to be incompatible). I don't think we had a similar requirement for tini, so this check was redundant. Let's remove the check altogether. Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
16 lines
534 B
Go
16 lines
534 B
Go
// +build !autogen
|
|
|
|
// Package dockerversion is auto-generated at build-time
|
|
package dockerversion // import "github.com/docker/docker/dockerversion"
|
|
|
|
// Default build-time variable for library-import.
|
|
// These variables are overridden on build with build-time information.
|
|
var (
|
|
GitCommit = "library-import"
|
|
Version = "library-import"
|
|
BuildTime = "library-import"
|
|
IAmStatic = "library-import"
|
|
PlatformName = ""
|
|
ProductName = ""
|
|
DefaultProductLicense = ""
|
|
)
|