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>
This commit is contained in:
Eric Wong 2006-12-19 14:58:20 -08:00 коммит произвёл Junio C Hamano
Родитель 8336afa563
Коммит c6b4fa96cb
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -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 )