From: Jakub Narebski Date: Mon, 31 Jul 2006 16:33:37 +0000 (+0200) Subject: gitweb: do not quote path for list version of open "-|" X-Git-Tag: v1.4.3-rc1~274^2~35 X-Git-Url: https://asedeno.scripts.mit.edu/gitweb/?a=commitdiff_plain;h=822c185907f27c02ce7791985ea9241e37041d5f;p=git.git gitweb: do not quote path for list version of open "-|" Signed-off-by: Jakub Narebski Signed-off-by: Junio C Hamano --- diff --git a/gitweb/gitweb.cgi b/gitweb/gitweb.cgi index c741e739d..73d14ffb1 100755 --- a/gitweb/gitweb.cgi +++ b/gitweb/gitweb.cgi @@ -2347,7 +2347,7 @@ sub git_history { git_print_page_path($file_name, $ftype); open my $fd, "-|", - $GIT, "rev-list", "--full-history", $hash_base, "--", "\'$file_name\'"; + $GIT, "rev-list", "--full-history", $hash_base, "--", $file_name; print "\n"; my $alternate = 0; while (my $line = <$fd>) {