git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 6/9] difftool: replace system call with Git::command_noisy
@ 2012-03-17  1:59 Tim Henigan
  2012-03-17  2:48 ` David Aguilar
  0 siblings, 1 reply; 6+ messages in thread
From: Tim Henigan @ 2012-03-17  1:59 UTC (permalink / raw)
  To: gitster, davvid, git; +Cc: Tim Henigan

The Git.pm module includes functions intended to standardize working
with Git repositories in Perl scripts. This commit teaches difftool
to use Git::command_noisy rather than a system call to run the diff
command.

Signed-off-by: Tim Henigan <tim.henigan@gmail.com>
---
 git-difftool.perl |   10 +---------
 1 file changed, 1 insertion(+), 9 deletions(-)

diff --git a/git-difftool.perl b/git-difftool.perl
index 9495f14..8498089 100755
--- a/git-difftool.perl
+++ b/git-difftool.perl
@@ -72,12 +72,4 @@ elsif (defined($no_prompt)) {
 
 $ENV{GIT_PAGER} = '';
 $ENV{GIT_EXTERNAL_DIFF} = 'git-difftool--helper';
-my @command = ('git', 'diff', @ARGV);
-
-# ActiveState Perl for Win32 does not implement POSIX semantics of
-# exec* system call. It just spawns the given executable and finishes
-# the starting program, exiting with code 0.
-# system will at least catch the errors returned by git diff,
-# allowing the caller of git difftool better handling of failures.
-my $rc = system(@command);
-exit($rc | ($rc >> 8));
+git_cmd_try { Git::command_noisy(('diff', @ARGV)) } 'exit code %d';
-- 
1.7.9.1.290.gbd444

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

end of thread, other threads:[~2012-03-18  1:22 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-03-17  1:59 [PATCH 6/9] difftool: replace system call with Git::command_noisy Tim Henigan
2012-03-17  2:48 ` David Aguilar
2012-03-17 10:50   ` Alex Riesen
2012-03-17 14:48     ` Tim Henigan
2012-03-17 19:54       ` Alex Riesen
2012-03-18  1:21   ` Tim Henigan

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).