>
> No. You only need pre-revprop-change.bat which has to return exit code 0
> if the action should be allowed and 1 if not.
> Here is my pre-revprop-change.bat hook script for use on Windows:
>
> [snip]
>
> set SVN_REPOS=%1
> set SVN_REV=%2
> set SVN_USER=%3
> set SVN_PROPNAME=%4
>
> IF "%SVN_PROPNAME%" == "svn:log" exit 0
> REM uncomment this if you also want to allow changing of author
> REM IF "%SVN_PROPNAME%" == "svn:author" exit 0
>
> echo Property %SVN_PROPNAME% cannot be changed >&2
> exit 1
>
> [snap]
>
> HTH, Rainer
>
>
>
Hmm, mine works fine with zero-byte files.
Received on Sun Apr 10 22:58:57 2005