[svn.haxx.se] · SVN Dev · SVN Users · SVN Org · TSVN Dev · TSVN Users · Subclipse Dev · Subclipse Users · this month's index

svn propset syntax?

From: Phil <plabonte_at_gmail.com>
Date: 2006-04-12 20:21:20 CEST

I am using this command on subversion 1.2.3

svn propset svn:needs-lock --revprop -r HEAD 1 http://vsubversion/svn/docs

But I get a failure:
svn: DAV request failed; it's possible that the repository's
pre-revprop-change hook either failed or is non-existent
svn: At least one property change failed; repository is unchanged

I have changed the default hook script to allow svn:needs-lock by modifying
the script as follows:
#if [ "$ACTION" = "M" -a "$PROPNAME" = "svn:log" ]; then exit 0; fi
if [ "$ACTION" = "M" -a "$PROPNAME" = "svn:needs-lock" ]; then exit 0; fi

and I even did a chmod 777 on the script just to make sure it was not a
properties issue...

Anything else I chould try? or is my syntax wrong?
Received on Wed Apr 12 20:23:10 2006

This is an archived mail posted to the Subversion Users mailing list.

This site is subject to the Apache Privacy Policy and the Apache Public Forum Archive Policy.