summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormdankov <mdankov@users.noreply.github.com>2015-09-07 20:46:07 +0300
committermdankov <mdankov@users.noreply.github.com>2015-09-07 20:46:07 +0300
commit6ea07f242cece8fb75f127fab732e934187b94fb (patch)
treed29ae4c279fad6edcde2cb99e14691f35003517d
parent6b9524b60b940f7600d1f052f5612a62a91055e7 (diff)
downloadnavit-R6252.tar.gz
Fix quatation marks in update_version.shR6252
-rw-r--r--ci/update_version.sh3
1 files changed, 1 insertions, 2 deletions
diff --git a/ci/update_version.sh b/ci/update_version.sh
index bcc17dcca..f09d94e22 100644
--- a/ci/update_version.sh
+++ b/ci/update_version.sh
@@ -24,10 +24,9 @@ if [ "$1" == "prepare" ] ; then
fi
if [ "$1" == "push" ] ; then
- git log -1 --format="%H %d" | grep 'tag: $TAG'
+ git log -1 --format="%H %d" | grep "tag: $TAG"
if [ $? -eq 0 ] ; then
echo Pushing tag $TAG to origin...
git push origin $TAG
fi
fi
-