From f7c22b3f165b4249a35bf7345e7614cd900e4643 Mon Sep 17 00:00:00 2001 From: "Bradley M. Kuhn" Date: Sun, 3 Oct 2010 18:07:43 -0400 Subject: [PATCH] All files in static should be world readable. --- compile-all.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/compile-all.py b/compile-all.py index 4924682b..96c6cb94 100755 --- a/compile-all.py +++ b/compile-all.py @@ -13,5 +13,7 @@ os.path.walk("www", compileDir, "") os.system("find www -type d -exec chmod gu+rx {} \;") os.system("find www -type f -exec chmod gu+r {} \;") os.system("find www -type d -exec chmod o+x {} \;") +os.system("find www/conservancy/static -type d -exec chmod o+rx {} \;") +os.system("find www/conservancy/static -exec chmod o+r {} \;") os.system("find www -exec chgrp www-data {} \;") os.system("find www -exec chmod go-w {} \;")