mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
8054a30387
- Add a *version* file placeholder. - Update autogen and builds to use it and an autogen build flag Signed-off-by: Vincent Demeester <vincent@sbr.pm>
16 lines
450 B
Go
16 lines
450 B
Go
// +build !autogen
|
|
|
|
// Package dockerversion is auto-generated at build-time
|
|
package dockerversion
|
|
|
|
// Default build-time variable for library-import.
|
|
// This file is overridden on build with build-time informations.
|
|
const (
|
|
GitCommit string = "library-import"
|
|
Version string = "library-import"
|
|
BuildTime string = "library-import"
|
|
|
|
IAmStatic string = "library-import"
|
|
InitSHA1 string = "library-import"
|
|
InitPath string = "library-import"
|
|
)
|