gitweb: do not quote path for list version of open "-|"
[gitweb.git] / gitweb / gitweb.cgi
index c741e739d0c73f3cfd133919ec6eb7cf3f2a3839..73d14ffb100a62af275db3cb4791691d12f0b255 100755 (executable)
@@ -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>) {