summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Henigan <tim.henigan@gmail.com>2012-03-22 19:52:19 (GMT)
committerJunio C Hamano <gitster@pobox.com>2012-03-23 18:46:26 (GMT)
commitdb607087d0f1256b745b9a878623060d775f1817 (patch)
tree3c2e937fe1fd2a2dc2a512f3e5ae7f6dc37b4229
parent283607694c1248a8e1ff4cda48aa5d1eb1287733 (diff)
downloadgit-db607087d0f1256b745b9a878623060d775f1817.zip
git-db607087d0f1256b745b9a878623060d775f1817.tar.gz
git-db607087d0f1256b745b9a878623060d775f1817.tar.bz2
difftool: remove explicit change of PATH
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>
-rwxr-xr-xgit-difftool.perl4
1 files changed, 0 insertions, 4 deletions
diff --git a/git-difftool.perl b/git-difftool.perl
index 4555cd8..a399f3d 100755
--- a/git-difftool.perl
+++ b/git-difftool.perl
@@ -13,8 +13,6 @@
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;
@@ -33,8 +31,6 @@ USAGE
sub setup_environment
{
- my $DIR = abs_path(dirname($0));
- $ENV{PATH} = "$DIR:$ENV{PATH}";
$ENV{GIT_PAGER} = '';
$ENV{GIT_EXTERNAL_DIFF} = 'git-difftool--helper';
}