Git development
 help / color / mirror / Atom feed
* [PATCH] git-cvsserver: fix breakage when calling git merge-file
@ 2006-12-19 22:58 Eric Wong
  2006-12-19 23:59 ` Johannes Schindelin
  0 siblings, 1 reply; 3+ messages in thread
From: Eric Wong @ 2006-12-19 22:58 UTC (permalink / raw)
  To: Junio C Hamano; +Cc: Martin Langhoff, git

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>
---
 git-cvsserver.perl |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/git-cvsserver.perl b/git-cvsserver.perl
index 2a8447e..df39512 100755
--- a/git-cvsserver.perl
+++ b/git-cvsserver.perl
@@ -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 )
-- 
1.4.4.2.ga184

^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2006-12-20  0:39 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-12-19 22:58 [PATCH] git-cvsserver: fix breakage when calling git merge-file Eric Wong
2006-12-19 23:59 ` Johannes Schindelin
2006-12-20  0:38   ` Junio C Hamano

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox