summaryrefslogtreecommitdiff
path: root/git-difftool.perl
diff options
context:
space:
mode:
authorCharles Bailey <cbailey32@bloomberg.net>2014-07-19 17:35:17 +0100
committerJunio C Hamano <gitster@pobox.com>2014-07-21 12:03:44 -0700
commitd782a9157bfb64b7cb80f0905973b3c7cf272f3d (patch)
tree28a18232c5f349aafae7f477fa09311582371bbd /git-difftool.perl
parent02f55adc2469a5cad39acacc05eadaa6302e95ac (diff)
downloadgit-cb/mergetool-difftool.tar.gz
difftool: don't assume that default sh is sanecb/mergetool-difftool
git-difftool used to create a command list script containing $( ... ) and explicitly call "sh -c" with this list. Instead, allow mergetool --tool-help to take a mode parameter and call mergetool directly to invoke the show_tool_help function. This mode parameter is intented for use solely by difftool. Signed-off-by: Charles Bailey <cbailey32@bloomberg.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'git-difftool.perl')
-rwxr-xr-xgit-difftool.perl6
1 files changed, 1 insertions, 5 deletions
diff --git a/git-difftool.perl b/git-difftool.perl
index 18ca61e8d0..598fcc23b9 100755
--- a/git-difftool.perl
+++ b/git-difftool.perl
@@ -47,13 +47,9 @@ sub find_worktree
sub print_tool_help
{
- my $cmd = 'TOOL_MODE=diff';
- $cmd .= ' && . "$(git --exec-path)/git-mergetool--lib"';
- $cmd .= ' && show_tool_help';
-
# See the comment at the bottom of file_diff() for the reason behind
# using system() followed by exit() instead of exec().
- my $rc = system('sh', '-c', $cmd);
+ my $rc = system(qw(git mergetool --tool-help=diff));
exit($rc | ($rc >> 8));
}