Make subversion allow to setup revision properties (non versionned)

prefixed with "CGAL:".
This commit is contained in:
Laurent Rineau 2008-02-26 09:56:54 +00:00
parent b1aac6f17d
commit c45b541e32
1 changed files with 8 additions and 6 deletions

View File

@ -53,9 +53,11 @@ USER="$3"
PROPNAME="$4" PROPNAME="$4"
ACTION="$5" # empty on 06/15/2006 ACTION="$5" # empty on 06/15/2006
if [ "$PROPNAME" = "svn:log" ]; then case "$PROPNAME" in
exit 0; svn:log|CGAL:*)
else exit 0;
echo "Changing revision properties other than svn:log is prohibited" >&2 ;;
exit 1 *)
fi echo "Changing revision properties other than svn:log is prohibited" >&2
exit 1
esac