Browse Source

Revert "Set VERSION from git once, in a variable (#1447)"

This reverts commit 410af6971b.
for-closed-social
Kim "BKC" Carlbäcker 7 years ago
parent
commit
cebe3a6b2f
1 changed files with 1 additions and 3 deletions
  1. +1
    -3
      Makefile

+ 1
- 3
Makefile View File

@ -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)

Loading…
Cancel
Save