Hack to appropriately set the group ownership and permissions after creating the packages. This really belongs in the crontabbed script instead, but it doesn't exist yet.

git-svn-id: https://svn.eduke32.com/eduke32@1517 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
plagman 2009-10-01 05:51:17 +00:00
parent 215f51fb5d
commit 1c9540ada0

View file

@ -90,6 +90,9 @@ then
cd $source cd $source
svn log -r $head:$lastrevision > $output/$date-$head/ChangeLog.txt svn log -r $head:$lastrevision > $output/$date-$head/ChangeLog.txt
fi fi
# hack for our served directory structure
chmod -R g+w $output/$date-$head
chown -R :dukeworld $output/$date-$head
else else
echo "Nothing to do." echo "Nothing to do."
fi fi