Apply directory changes to update script

This commit is contained in:
Ben Sturmfels 2023-10-25 22:56:44 +11:00
parent 1d60fb041b
commit 2cdebf1316
Signed by: bsturmfels
GPG key ID: 023C05E2C9C068F0

View file

@ -31,8 +31,8 @@ fi
exitcode=0
git merge --quiet --ff-only "${git_remote}/${git_refspec}"
python3 -m compileall -q -x - www || exitcode=$?
chgrp -R www-data www || exitcode=$?
chmod -R g+rX-w,o+X-w www || exitcode=$?
chmod -R o+r www/conservancy/static || exitcode=$?
python3 -m compileall -q -x - conservancy || exitcode=$?
chgrp -R www-data conservancy || exitcode=$?
chmod -R g+rX-w,o+X-w conservancy || exitcode=$?
chmod -R o+r conservancy/static || exitcode=$?
exit "$exitcode"