From f5b3c0244c26e291473ca72c09cec0490f7bb462 Mon Sep 17 00:00:00 2001 From: Martin Erik Werner Date: Sun, 12 Nov 2017 15:39:53 +0100 Subject: Fix bashism in vc-key.sh Change "==" to "=", since "==" for comparison is not available in POSIX sh. Signed-off-by: Martin Erik Werner --- cpukit/sapi/vc-key.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cpukit/sapi/vc-key.sh b/cpukit/sapi/vc-key.sh index c628a1e26d..3c8f446d3f 100755 --- a/cpukit/sapi/vc-key.sh +++ b/cpukit/sapi/vc-key.sh @@ -15,7 +15,7 @@ if test $# -ge 1; then cd $repo if test -n ${git}; then git rev-parse --git-dir > /dev/null 2>&1 - if test $? == 0; then + if test $? = 0; then git status > /dev/null 2>&1 if git diff-index --quiet HEAD --; then modified="" @@ -24,7 +24,7 @@ if test $# -ge 1; then fi vc_ident="$(git rev-parse --verify HEAD)${modified}" if test $# -ge 1; then - if test "${vc_ident}" == "$1"; then + if test "${vc_ident}" = "$1"; then vc_ident="matches" fi fi -- cgit v1.2.3