From 2cdebf1316740a4d1feefaefff5190b3c01cc94b Mon Sep 17 00:00:00 2001 From: Ben Sturmfels Date: Wed, 25 Oct 2023 22:56:44 +1100 Subject: [PATCH] Apply directory changes to update script --- systemd/conservancy-www-update.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/systemd/conservancy-www-update.sh b/systemd/conservancy-www-update.sh index 4d427531..9f8db9ee 100755 --- a/systemd/conservancy-www-update.sh +++ b/systemd/conservancy-www-update.sh @@ -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"