Code

git-cvsserver: fix breakage when calling git merge-file
authorEric Wong <normalperson@yhbt.net>
Tue, 19 Dec 2006 22:58:20 +0000 (14:58 -0800)
committerJunio C Hamano <junkio@cox.net>
Wed, 20 Dec 2006 00:32:18 +0000 (16:32 -0800)
In the same vein as 8336afa563fbeff35e531396273065161181f04c,
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>
git-cvsserver.perl

index 2a8447e2534e93b4cec4e86c2dcbadfede99208a..df395126b86bbed4d8f785e7eccbdb091c3f888b 100755 (executable)
@@ -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 )