File diff d8019a11eb45 → 38dec75ddd5e
systemd/conservancy-www-update.sh
Show inline comments
...
 
@@ -24,13 +24,13 @@ fi
 
IFS=/ read git_remote git_refspec <<EOF
 
$git_upstream
 
EOF
 
git fetch --quiet --no-tags "${git_remote}/${git_refspec}"
 
git fetch --quiet --no-tags "$git_remote" "$git_refspec"
 
if [ "$(git rev-parse "$PRODUCTION_BRANCH")" = "$(git rev-parse "$git_upstream")" ]; then
 
    exit 0
 
fi
 

	
 
exitcode=0
 
git merge --quiet --ff-only "$git_remote" "$git_refspec"
 
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=$?