Browse Source

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

master
Sandro Santilli Bo-Yi Wu 8 years ago
parent
commit
410af6971b
1 changed files with 3 additions and 1 deletions
  1. +3
    -1
      Makefile

+ 3
- 1
Makefile View File

@@ -14,7 +14,9 @@ JAVASCRIPTS :=
GOFLAGS := -i -v GOFLAGS := -i -v
EXTRA_GOFLAGS ?= EXTRA_GOFLAGS ?=


LDFLAGS := -X "main.Version=$(shell git describe --tags --always | sed 's/-/+/' | sed 's/^v//')" -X "main.Tags=$(TAGS)"
VERSION := $(shell git describe --tags --always | sed 's/-/+/' | sed 's/^v//')

LDFLAGS := -X "main.Version=$(VERSION)" -X "main.Tags=$(TAGS)"


PACKAGES ?= $(filter-out code.gitea.io/gitea/integrations,$(shell go list ./... | grep -v /vendor/)) PACKAGES ?= $(filter-out code.gitea.io/gitea/integrations,$(shell go list ./... | grep -v /vendor/))
SOURCES ?= $(shell find . -name "*.go" -type f) SOURCES ?= $(shell find . -name "*.go" -type f)


Loading…
Cancel
Save