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:29:38 UTC

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

Author: humbedooh
Date: Tue Mar 30 12:29:38 2021
New Revision: 1888211

URL: http://svn.apache.org/viewvc?rev=1888211&view=rev
Log:
fix path

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=1888211&r1=1888210&r2=1888211&view=diff
==============================================================================
--- httpd/site/trunk/lib/path.pm (original)
+++ httpd/site/trunk/lib/path.pm Tue Mar 30 12:29:38 2021
@@ -10,7 +10,7 @@ our @patterns = (
 ) ;
 
 our %dependencies = (
-    map +($_ => @foo = map {s/^content//r} glob "content/security/*.json"), grep s/^content//, glob "content/security/*.sh"
+    map +($_ => @foo = map {s/^content//r} glob "content/security/json/*.json"), grep s/^content//, glob "content/security/*.sh"
 );
 
 1;