summaryrefslogtreecommitdiff
path: root/git-fetch.sh
diff options
context:
space:
mode:
authorEric Wong <normalperson@yhbt.net>2006-07-11 14:06:39 -0700
committerJunio C Hamano <junkio@cox.net>2006-07-11 14:14:09 -0700
commited0e078f96a96ffe515899ef42051a568be4693a (patch)
treea8771d27afd4ed90931bfb874e35be783d1105d7 /git-fetch.sh
parent38d3874ddc5c15120c7fbbdcad26bf5478f58e98 (diff)
downloadgit-ed0e078f96a96ffe515899ef42051a568be4693a.tar.gz
git-fetch: fix a bashism (==)
Signed-off-by: Eric Wong <normalperson@yhbt.net> Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'git-fetch.sh')
-rwxr-xr-xgit-fetch.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/git-fetch.sh b/git-fetch.sh
index c0d256c98b..ff1769952b 100755
--- a/git-fetch.sh
+++ b/git-fetch.sh
@@ -80,7 +80,7 @@ rref=
rsync_slurped_objects=
rloga="$rloga $remote_nick"
-test "$remote_nick" == "$remote" || rloga="$rloga $remote"
+test "$remote_nick" = "$remote" || rloga="$rloga $remote"
if test "" = "$append"
then