Skip to content

Commit d3ca0bb

Browse files
committed
Merge branch '333-dle-server-version' into 'master'
fix(engine): pick the correct (starting with 'v') tag to use as the DLE version (#333) Closes #333 See merge request postgres-ai/database-lab!508
2 parents d2480dc + 4827bf1 commit d3ca0bb

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)