Remove build date from binary
This commit is contained in:
parent
b4cdb75d15
commit
021e3e307b
4 changed files with 2 additions and 6 deletions
2
Makefile
2
Makefile
|
@ -19,7 +19,7 @@ GOFMT ?= gofmt -s
|
||||||
GOFLAGS := -v -mod=vendor
|
GOFLAGS := -v -mod=vendor
|
||||||
EXTRA_GOFLAGS ?=
|
EXTRA_GOFLAGS ?=
|
||||||
|
|
||||||
LDFLAGS := -X "code.vikunja.io/api/pkg/version.Version=$(shell git describe --tags --always --abbrev=10 | sed 's/-/+/' | sed 's/^v//' | sed 's/-g/-/')" -X "main.Tags=$(TAGS)" -X "code.vikunja.io/api/pkg/version.BuildTime=$(shell date -R)"
|
LDFLAGS := -X "code.vikunja.io/api/pkg/version.Version=$(shell git describe --tags --always --abbrev=10 | sed 's/-/+/' | sed 's/^v//' | sed 's/-g/-/')" -X "main.Tags=$(TAGS)"
|
||||||
|
|
||||||
PACKAGES ?= $(filter-out code.vikunja.io/api/pkg/integrations,$(shell go list -mod=vendor ./... | grep -v /vendor/))
|
PACKAGES ?= $(filter-out code.vikunja.io/api/pkg/integrations,$(shell go list -mod=vendor ./... | grep -v /vendor/))
|
||||||
SOURCES ?= $(shell find . -name "*.go" -type f)
|
SOURCES ?= $(shell find . -name "*.go" -type f)
|
||||||
|
|
|
@ -31,6 +31,5 @@ var versionCmd = &cobra.Command{
|
||||||
Short: "Print the version number of Vikunja",
|
Short: "Print the version number of Vikunja",
|
||||||
Run: func(cmd *cobra.Command, args []string) {
|
Run: func(cmd *cobra.Command, args []string) {
|
||||||
fmt.Printf("Vikunja api version %s\n", version.Version)
|
fmt.Printf("Vikunja api version %s\n", version.Version)
|
||||||
fmt.Printf("Built at %s\n", version.BuildTime)
|
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
|
@ -42,7 +42,7 @@ var webCmd = &cobra.Command{
|
||||||
Run: func(cmd *cobra.Command, args []string) {
|
Run: func(cmd *cobra.Command, args []string) {
|
||||||
|
|
||||||
// Version notification
|
// Version notification
|
||||||
log.Infof("Vikunja version %s, built at %s", version.Version, version.BuildTime)
|
log.Infof("Vikunja version %s", version.Version)
|
||||||
|
|
||||||
// Additional swagger information
|
// Additional swagger information
|
||||||
swagger.SwaggerInfo.Version = version.Version
|
swagger.SwaggerInfo.Version = version.Version
|
||||||
|
|
|
@ -21,6 +21,3 @@ package version
|
||||||
|
|
||||||
// Version sets the version to be printed to the user. Gets overwritten by "make release" or "make build" with last git commit or tag.
|
// Version sets the version to be printed to the user. Gets overwritten by "make release" or "make build" with last git commit or tag.
|
||||||
var Version = "0.7"
|
var Version = "0.7"
|
||||||
|
|
||||||
// BuildTime contains the build time of vikunja.
|
|
||||||
var BuildTime = ""
|
|
||||||
|
|
Loading…
Reference in a new issue