gitweb: do not quote path for list version of open "-|"
Signed-off-by: Jakub Narebski <jnareb@gmail.com> Signed-off-by: Junio C Hamano <junkio@cox.net>
This commit is contained in:
parent
9f5dcb8168
commit
822c185907
@ -2347,7 +2347,7 @@ sub git_history {
|
|||||||
git_print_page_path($file_name, $ftype);
|
git_print_page_path($file_name, $ftype);
|
||||||
|
|
||||||
open my $fd, "-|",
|
open my $fd, "-|",
|
||||||
$GIT, "rev-list", "--full-history", $hash_base, "--", "\'$file_name\'";
|
$GIT, "rev-list", "--full-history", $hash_base, "--", $file_name;
|
||||||
print "<table cellspacing=\"0\">\n";
|
print "<table cellspacing=\"0\">\n";
|
||||||
my $alternate = 0;
|
my $alternate = 0;
|
||||||
while (my $line = <$fd>) {
|
while (my $line = <$fd>) {
|
||||||
|
Loading…
Reference in New Issue
Block a user