You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by hu...@apache.org on 2021/03/30 12:47:32 UTC

svn commit: r1888214 - /httpd/site/trunk/lib/path.pm

Author: humbedooh
Date: Tue Mar 30 12:47:32 2021
New Revision: 1888214

URL: http://svn.apache.org/viewvc?rev=1888214&view=rev
Log:
enforce list

Modified:
    httpd/site/trunk/lib/path.pm

Modified: httpd/site/trunk/lib/path.pm
URL: http://svn.apache.org/viewvc/httpd/site/trunk/lib/path.pm?rev=1888214&r1=1888213&r2=1888214&view=diff
==============================================================================
--- httpd/site/trunk/lib/path.pm (original)
+++ httpd/site/trunk/lib/path.pm Tue Mar 30 12:47:32 2021
@@ -10,7 +10,7 @@ our @patterns = (
 ) ;
 
 our %dependencies = (
-    map +($_ => map {s/^content//r} glob "content/security/json/*.json"), grep s/^content//, glob "content/security/*.sh"
+    map +($_ => [map {s/^content//r} glob "content/security/json/*.json"]), grep s/^content//, glob "content/security/*.sh"
 );
 
 1;