From ed0e078f96a96ffe515899ef42051a568be4693a Mon Sep 17 00:00:00 2001 From: Eric Wong Date: Tue, 11 Jul 2006 14:06:39 -0700 Subject: git-fetch: fix a bashism (==) Signed-off-by: Eric Wong Signed-off-by: Junio C Hamano --- git-fetch.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'git-fetch.sh') 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 -- cgit v1.2.3