summaryrefslogtreecommitdiff
path: root/git-difftool.perl
diff options
context:
space:
mode:
authorTim Henigan <tim.henigan@gmail.com>2012-03-22 19:52:20 (GMT)
committerJunio C Hamano <gitster@pobox.com>2012-03-23 18:46:26 (GMT)
commit11bf87076a686dbfe696dd21333486cab55e6fbb (patch)
treea3ae773863a2ea1b9698d5de7cd553ec74d29bf1 /git-difftool.perl
parentdb607087d0f1256b745b9a878623060d775f1817 (diff)
downloadgit-11bf87076a686dbfe696dd21333486cab55e6fbb.zip
git-11bf87076a686dbfe696dd21333486cab55e6fbb.tar.gz
git-11bf87076a686dbfe696dd21333486cab55e6fbb.tar.bz2
difftool: stop appending '.exe' to git
The system call to Git works the same whether or not ".exe" is appended to "git". The extra code is not necessary. Signed-off-by: Tim Henigan <tim.henigan@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'git-difftool.perl')
-rwxr-xr-xgit-difftool.perl11
1 files changed, 1 insertions, 10 deletions
diff --git a/git-difftool.perl b/git-difftool.perl
index a399f3d..a3ad389 100755
--- a/git-difftool.perl
+++ b/git-difftool.perl
@@ -35,15 +35,6 @@ sub setup_environment
$ENV{GIT_EXTERNAL_DIFF} = 'git-difftool--helper';
}
-sub exe
-{
- my $exe = shift;
- if ($^O eq 'MSWin32' || $^O eq 'msys') {
- return "$exe.exe";
- }
- return $exe;
-}
-
# parse command-line options. all unrecognized options and arguments
# are passed through to the 'git diff' command.
my ($difftool_cmd, $extcmd, $gui, $help, $prompt);
@@ -89,7 +80,7 @@ if (defined($prompt)) {
}
setup_environment();
-my @command = (exe('git'), 'diff', @ARGV);
+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