From c51353e4db8e5e946cf19c8623bed1498ec81b8d Mon Sep 17 00:00:00 2001 From: Sean Bright Date: Tue, 1 Feb 2022 11:09:58 -0500 Subject: [PATCH] build_tools/make_version: Fix bashism in comparison. In POSIX sh (which we indicate in the shebang), there is no == operator. Change-Id: Ic03d38214d14cdf329b0ba272279a815bb532965 --- build_tools/make_version | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build_tools/make_version b/build_tools/make_version index 6ef7b2941d..aefe6b1c83 100755 --- a/build_tools/make_version +++ b/build_tools/make_version @@ -101,7 +101,7 @@ elif [ -d ${1}/.git ]; then SVN_REV=`${GIT} log --pretty=full -1 | sed -n '/git-svn-id:/ s/.*\@\([^ ]*\) .*/\1/p'` if [ -z "$SVN_REV" ]; then MAINLINE_BRANCH=$(${GIT} config -f .gitreview --get gerrit.basebranch) - if [ "x${MAINLINE_BRANCH}" == "x" ] ; then + if [ "x${MAINLINE_BRANCH}" = "x" ] ; then MAINLINE_BRANCH=$(${GIT} config -f .gitreview --get gerrit.defaultbranch) fi -- 2.47.2