Skip to content

Commit b965e8f

Browse files
davvidgitster
authored andcommitted
difftool: Call the temp directory "git-difftool"
The "diffall" name was left over from when this functionality was part of the "git-diffall" script in contrib/. Make the naming consistent. Signed-off-by: David Aguilar <davvid@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent c9bdd50 commit b965e8f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

git-difftool.perl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ sub setup_dir_diff
104104
exit(0) if (length($diffrtn) == 0);
105105

106106
# Setup temp directories
107-
my $tmpdir = tempdir('git-diffall.XXXXX', CLEANUP => 1, TMPDIR => 1);
107+
my $tmpdir = tempdir('git-difftool.XXXXX', CLEANUP => 1, TMPDIR => 1);
108108
my $ldir = "$tmpdir/left";
109109
my $rdir = "$tmpdir/right";
110110
mkpath($ldir) or die $!;

0 commit comments

Comments
 (0)