mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
![Vincent Demeester](/assets/img/avatar_default.png)
- Move autogen/dockerversion to version - Update autogen and "builds" to use this package and a build flag Signed-off-by: Vincent Demeester <vincent@sbr.pm>
16 lines
438 B
Go
16 lines
438 B
Go
// +build !autogen
|
|
|
|
// Package version is auto-generated at build-time
|
|
package version
|
|
|
|
// 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"
|
|
)
|