8000 issue 18: run a chgrp to fix group of directories. · python/docsbuild-scripts@2899596 · GitHub
[go: up one dir, main page]

Skip to content

Commit 2899596

Browse files
committed
issue 18: run a chgrp to fix group of directories.
I see something like: drwxr-xr-x 19 docsbuild docs 4.0K Jul 10 04:26 3.5 drwxr-xr-x 19 docsbuild docs 4.0K Jul 10 05:05 3.6 drwxrwx--- 19 docsbuild docsbuild 4.0K Aug 1 23:19 3.7 With the chmod of #19 and this chgrp everything should be fixed.
1 parent 6922a3d commit 2899596

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

build_docs.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -174,6 +174,7 @@ def build_one(version, isdev, quick, sphinxbuild, build_root, www_root,
174174
gettext_language_tag)
175175
if not os.path.exists(target):
176176
os.makedirs(target, mode=0o775)
177+
shell_out("chgrp -R {group} {file}".format(group=group, file=target))
177178
logging.info("Doc autobuild started in %s", checkout)
178179
os.chdir(checkout)
179180

0 commit comments

Comments
 (0)
0