From 279cbd919e3dd6dbfba025f833cef8f73afd01cf Mon Sep 17 00:00:00 2001 From: Karl Ramm Date: Sat, 5 Oct 2013 21:42:50 -0400 Subject: substitute ~ back out of the tag in get_vers --- get_vers.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/get_vers.sh b/get_vers.sh index adc764c..7f281ae 100755 --- a/get_vers.sh +++ b/get_vers.sh @@ -5,7 +5,7 @@ top_srcdir=${1:-`pwd`} if test -f ${top_srcdir}/VERSION; then VERSION=`cat ${top_srcdir}/VERSION` elif test -d ${top_srcdir}/.git; then - VERSION=`(cd $top_srcdir; git describe --abbrev=6 --dirty)` + VERSION=`(cd $top_srcdir; git describe --abbrev=6 --dirty | sed -e 's/%7E/~/')` fi if test -z "$VERSION"; then -- cgit v1.2.3