Skip to content

Commit

Permalink
Merge pull request #347 from actiontech/fix-sqle-ee-issue-2106
Browse files Browse the repository at this point in the history
remove leading space from line
  • Loading branch information
LordofAvernus authored Dec 27, 2024
2 parents 33b2116 + 10a4338 commit deb1d98
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,7 @@ HEAD_HASH = $(shell git rev-parse HEAD)
# 2. 如果HEAD没有tag,则GIT_VERSION=<分支名> <commit>
# e.g. 分支名为main时,GIT_VERSION=main a6355ff4cf8d181315a2b30341bc954b29576b11
# e.g. 分支名为release-3.2411.x时,GIT_VERSION=release-3.2411.x a6355ff4cf8d181315a2b30341bc954b29576b11
override GIT_VERSION = $(if $(HEAD_TAG), \
$(shell echo $(HEAD_TAG) | sed 's/^v//')-$(EDITION), \
$(HEAD_BRANCH))${CUSTOM} $(HEAD_HASH)
override GIT_VERSION = $(if $(HEAD_TAG),$(shell echo $(HEAD_TAG) | sed 's/^v//')-$(EDITION),$(HEAD_BRANCH))${CUSTOM} $(HEAD_HASH)
override GIT_COMMIT = $(shell git rev-parse HEAD)
override PROJECT_NAME = dms
override DOCKER = $(shell which docker)
Expand Down

0 comments on commit deb1d98

Please sign in to comment.