Skip to content

Commit 4827bf1

Browse files
committed
fix(engine): pick the correct (starting with 'v') tag to use as the DLE version (#333)
1 parent 21759a2 commit 4827bf1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

engine/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ GOARCH = amd64
77

88
COMMIT?=$(shell git rev-parse HEAD)
99
BUILD_TIME?=$(shell date -u '+%Y%m%d-%H%M')
10-
VERSION=$(shell git describe --tags 2>/dev/null || echo "${COMMIT}")
10+
VERSION=$(shell git describe --tags --match "v*" 2>/dev/null || echo "${COMMIT}")
1111

1212
# Symlink into GOPATH
1313
BUILD_DIR=${GOPATH}/${SERVER_BINARY}

0 commit comments

Comments
 (0)