summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Wong <normalperson@yhbt.net>2006-07-11 21:06:39 (GMT)
committerJunio C Hamano <junkio@cox.net>2006-07-11 21:14:09 (GMT)
commited0e078f96a96ffe515899ef42051a568be4693a (patch)
treea8771d27afd4ed90931bfb874e35be783d1105d7
parent38d3874ddc5c15120c7fbbdcad26bf5478f58e98 (diff)
downloadgit-ed0e078f96a96ffe515899ef42051a568be4693a.zip
git-ed0e078f96a96ffe515899ef42051a568be4693a.tar.gz
git-ed0e078f96a96ffe515899ef42051a568be4693a.tar.bz2
git-fetch: fix a bashism (==)
Signed-off-by: Eric Wong <normalperson@yhbt.net> Signed-off-by: Junio C Hamano <junkio@cox.net>
-rwxr-xr-xgit-fetch.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/git-fetch.sh b/git-fetch.sh
index c0d256c..ff17699 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