Skip to content

Commit

Permalink
git-fetch: fix a bashism (==)
Browse files Browse the repository at this point in the history
Signed-off-by: Eric Wong <normalperson@yhbt.net>
Signed-off-by: Junio C Hamano <junkio@cox.net>
  • Loading branch information
Eric Wong authored and Junio C Hamano committed Jul 11, 2006
1 parent 38d3874 commit ed0e078
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion git-fetch.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit ed0e078

Please sign in to comment.