Adding the script directory to PATH is not needed. The script is
located at '$(git --exec-path)', which is already on the PATH.
Signed-off-by: Tim Henigan <tim.henigan@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
use 5.008;
use strict;
use warnings;
-use Cwd qw(abs_path);
-use File::Basename qw(dirname);
use Getopt::Long qw(:config pass_through);
use Git;
sub setup_environment
{
- my $DIR = abs_path(dirname($0));
- $ENV{PATH} = "$DIR:$ENV{PATH}";
$ENV{GIT_PAGER} = '';
$ENV{GIT_EXTERNAL_DIFF} = 'git-difftool--helper';
}