Revert "Set VERSION from git once, in a variable (#1447)"
This reverts commit 410af6971b
.
This commit is contained in:
parent
91d64656a4
commit
cebe3a6b2f
1 changed files with 1 additions and 3 deletions
4
Makefile
4
Makefile
|
@ -14,9 +14,7 @@ JAVASCRIPTS :=
|
|||
GOFLAGS := -i -v
|
||||
EXTRA_GOFLAGS ?=
|
||||
|
||||
VERSION := $(shell git describe --tags --always | sed 's/-/+/' | sed 's/^v//')
|
||||
|
||||
LDFLAGS := -X "main.Version=$(VERSION)" -X "main.Tags=$(TAGS)"
|
||||
LDFLAGS := -X "main.Version=$(shell git describe --tags --always | sed 's/-/+/' | sed 's/^v//')" -X "main.Tags=$(TAGS)"
|
||||
|
||||
PACKAGES ?= $(filter-out code.gitea.io/gitea/integrations,$(shell go list ./... | grep -v /vendor/))
|
||||
SOURCES ?= $(shell find . -name "*.go" -type f)
|
||||
|
|
Reference in a new issue