From f7c22b3f165b4249a35bf7345e7614cd900e4643 2010-10-03 22:07:43 From: Bradley M. Kuhn Date: 2010-10-03 22:07:43 Subject: [PATCH] All files in static should be world readable. --- diff --git a/compile-all.py b/compile-all.py index 4924682b60fb07e4885c9469a3fb3f445a98412e..96c6cb94ce8c60f7ca08842f0a26337c9fbc0d05 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 {} \;")