[HACK] scripts: Stop appending "+" to localversion

This always gets added and doesn't look nice in the version string, so
it's purely for aesthetic reasons :p
This commit is contained in:
Jami Kettunen 2020-10-07 23:06:21 +03:00
parent dae71dc9a5
commit 72ffd69b45

View file

@ -139,7 +139,7 @@ elif [ "${LOCALVERSION+set}" != "set" ]; then
# If the variable LOCALVERSION is set (including being set
# to an empty string), we don't want to append a plus sign.
scm=$(scm_version --short)
res="$res${scm:++}"
#res="$res${scm:++}"
fi
echo "$res"