Browse Source

git-cvsserver: fix breakage when calling git merge-file

In the same vein as 8336afa563,
this fixes the the RCS merge to git-merge-file conversion in
commit e2b70087.

Signed-off-by: Eric Wong <normalperson@yhbt.net>
Signed-off-by: Junio C Hamano <junkio@cox.net>
maint
Eric Wong 18 years ago committed by Junio C Hamano
parent
commit
c6b4fa96cb
  1. 2
      git-cvsserver.perl

2
git-cvsserver.perl

@ -946,7 +946,7 @@ sub req_update


$log->debug("Temporary directory for merge is $dir"); $log->debug("Temporary directory for merge is $dir");


my $return = system("git merge-file", $file_local, $file_old, $file_new); my $return = system("git", "merge-file", $file_local, $file_old, $file_new);
$return >>= 8; $return >>= 8;


if ( $return == 0 ) if ( $return == 0 )

Loading…
Cancel
Save