gen-version.sh: don't sed the output from git describe
Replacing '-' with '.' makes the version name slightly confusing, so lets stick with the unmodified output of git describe. Signed-off-by: Lars Hjemli <hjemli@gmail.com>
这个提交包含在:
@ -6,7 +6,7 @@ V=$1
|
|||||||
# Use `git describe` to get current version if we're inside a git repo
|
# Use `git describe` to get current version if we're inside a git repo
|
||||||
if test -d .git
|
if test -d .git
|
||||||
then
|
then
|
||||||
V=$(git describe --abbrev=4 HEAD 2>/dev/null | sed -e 's/-/./g')
|
V=$(git describe --abbrev=4 HEAD 2>/dev/null)
|
||||||
fi
|
fi
|
||||||
|
|
||||||
new="CGIT_VERSION = $V"
|
new="CGIT_VERSION = $V"
|
||||||
|
在新工单中引用
屏蔽一个用户