summaryrefslogtreecommitdiff
path: root/build_tools/make_svn_branch_name
diff options
context:
space:
mode:
authorRussell Bryant <russell@russellbryant.com>2005-12-01 00:43:17 +0000
committerRussell Bryant <russell@russellbryant.com>2005-12-01 00:43:17 +0000
commitb994fcae8baa87d1f13ad69d5143ffd41e0e7758 (patch)
tree783042fc6d1f05453cab404026f9abae3ebea5c2 /build_tools/make_svn_branch_name
parent48a4c3a24de587a355f92df7109c6f7520d57ef3 (diff)
use '=' instead of '==' for string comparisons. /bin/bash is ok with this, but
/bin/sh is not. (issue #5885) git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@7246 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'build_tools/make_svn_branch_name')
-rwxr-xr-xbuild_tools/make_svn_branch_name8
1 files changed, 4 insertions, 4 deletions
diff --git a/build_tools/make_svn_branch_name b/build_tools/make_svn_branch_name
index e24ba44cc..750841019 100755
--- a/build_tools/make_svn_branch_name
+++ b/build_tools/make_svn_branch_name
@@ -6,7 +6,7 @@ TEAM=0
REV=`svn info | grep -e 'Last Changed Rev' | awk '{print $4;}'`
-if [ "${PARTS}" == "trunk" ]
+if [ "${PARTS}" = "trunk" ]
then
echo 'trunk'-r${REV}
exit 0
@@ -26,21 +26,21 @@ do
continue
fi
- if [ "${PART}" == "branches" ]
+ if [ "${PART}" = "branches" ]
then
BRANCH=1
RESULT="branch"
continue
fi
- if [ "${PART}" == "tags" ]
+ if [ "${PART}" = "tags" ]
then
BRANCH=1
RESULT="tag"
continue
fi
- if [ "${PART}" == "team" ]
+ if [ "${PART}" = "team" ]
then
TEAM=1
continue