diff options
author | Eric Wong <normalperson@yhbt.net> | 2006-07-11 14:06:39 -0700 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-07-11 14:14:09 -0700 |
commit | ed0e078f96a96ffe515899ef42051a568be4693a (patch) | |
tree | a8771d27afd4ed90931bfb874e35be783d1105d7 /git-fetch.sh | |
parent | 38d3874ddc5c15120c7fbbdcad26bf5478f58e98 (diff) | |
download | git-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-x | git-fetch.sh | 2 |
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 |