From: Thomas Berezansky Date: Sat, 21 May 2011 14:32:43 +0000 (-0400) Subject: Missing $ X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=02b33781aeb9fc1ef2dc985ea418fc55e1e93060;p=working%2FEvergreen.git Missing $ Signed-off-by: Thomas Berezansky --- diff --git a/build/tools/apply_version.sh b/build/tools/apply_version.sh index bb2e9b4b6f..98dd5ac684 100755 --- a/build/tools/apply_version.sh +++ b/build/tools/apply_version.sh @@ -13,7 +13,7 @@ if [ $VERSION = "AUTO" ]; then VERSION=`echo $GIT_BRANCH | sed 's/^rel_\([0-9]\+\)_\([0-9]\+\)_\([0-9]\+\)_\(.\+\)$/\1.\2.\3-\4/'` VERSION=`echo $VERSION | sed 's/^rel_\([0-9]\+\)_\([0-9]\+\)_\([0-9]\+\)$/\1.\2.\3/'` VERSION=`echo $VERSION | sed 's/^rel_\([0-9]\+\)_\([0-9]\+\)_\(.\+\)$/\1.\2-\3/'` - VERSION=`echo $VERSION | sed 's/^rel_\([0-9]\+\)_\([0-9]\+\)/\1.\2/'` + VERSION=`echo $VERSION | sed 's/^rel_\([0-9]\+\)_\([0-9]\+\)$/\1.\2/'` if [ "$VERSION" = "$GIT_BRANCH" ]; then echo "AUTO VERSION FAILED." exit 1