- 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> Upstream-commit: d5cd032a86617249eadd7142227c5355ba9164b4 Component: engine
17 lines
438 B
Go
17 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"
|
|
)
|