Skip to content

Commit

Permalink
git-cvsserver: fix breakage when calling git merge-file
Browse files Browse the repository at this point in the history
In the same vein as 8336afa,
this fixes the the RCS merge to git-merge-file conversion in
commit e2b7008.

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 Dec 20, 2006
1 parent 8336afa commit c6b4fa9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion git-cvsserver.perl
Original file line number Diff line number Diff line change
Expand Up @@ -946,7 +946,7 @@ sub req_update

$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;

if ( $return == 0 )
Expand Down

0 comments on commit c6b4fa9

Please sign in to comment.