diff options
author | Jakub Narebski <jnareb@gmail.com> | 2006-07-31 18:33:37 +0200 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-07-31 12:08:29 -0700 |
commit | 822c185907f27c02ce7791985ea9241e37041d5f (patch) | |
tree | e01aa72b818716771219b0e477856930321db812 /gitweb | |
parent | 9f5dcb8168d5ea9f0169e11f017ecd9710d85797 (diff) | |
download | git-822c185907f27c02ce7791985ea9241e37041d5f.tar.gz git-822c185907f27c02ce7791985ea9241e37041d5f.tar.xz |
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>
Diffstat (limited to 'gitweb')
-rwxr-xr-x | gitweb/gitweb.cgi | 2 |
1 files changed, 1 insertions, 1 deletions
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 "<table cellspacing=\"0\">\n"; my $alternate = 0; while (my $line = <$fd>) { |