From 42b455b520f7371444397fda59f23af86a518662 Mon Sep 17 00:00:00 2001 From: James Vega Date: Fri, 17 Dec 2004 07:11:11 +0000 Subject: [PATCH] Make sure we chmod docs/plugins so it's group writable. --- sandbox/release.py | 1 + 1 file changed, 1 insertion(+) diff --git a/sandbox/release.py b/sandbox/release.py index 96aaae889..2e92b01f7 100644 --- a/sandbox/release.py +++ b/sandbox/release.py @@ -77,6 +77,7 @@ if __name__ == '__main__': } system('python sandbox/generate-plugin-documentation.py') pwd = os.getcwd() + os.chmod('docs/plugins', 0775) sh = 'tar rf %s/docs.tar %%s' % pwd for (dir, L) in docFiles.iteritems(): os.chdir(os.path.join(pwd, dir))