Dont append + to version string

* 0.0.0-pwn+ -> 0.0.0-pwn
This commit is contained in:
Martin Valba 2024-08-27 20:07:42 +03:00
parent 6425ffcede
commit 857b326d12

View File

@ -186,7 +186,7 @@ else
# LOCALVERSION= is not specified # LOCALVERSION= is not specified
if test "${LOCALVERSION+set}" != "set"; then if test "${LOCALVERSION+set}" != "set"; then
scm=$(scm_version --short) scm=$(scm_version --short)
res="$res${scm:++}" res="$res${scm:+}"
fi fi
fi fi