summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xsrc/scripts/reversion2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/scripts/reversion b/src/scripts/reversion
index 63b4adbfe..2d63ad746 100755
--- a/src/scripts/reversion
+++ b/src/scripts/reversion
@@ -29,7 +29,6 @@ fi
# Read version information that was generated by a previous run of
# this script, or during the release process.
- set $(echo "$description" | sed 's|-| |;s|_|.|;s|[-_]| _|;s|-g|-|')
if [ -f ./version.sh ]; then
. ./version.sh
elif [ -f ../src/version.sh ]; then
@@ -44,6 +43,7 @@ elif [ -d ../../.git ] || [ -f ../../.git ] || [ "$1" = release ]; then
else
description=$(git describe --dirty=-XX --match 'exim-4*')
fi
+ set $(echo "$description" | sed 's/-/ /; s/-g/-/')
# Only update if we need to
if [ "$2 $3" != "$EXIM_RELEASE_VERSION $EXIM_VARIANT_VERSION" ]
then