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

RE: cleanup failed

From: <elish_at_consist.co.il>
Date: Sat, 21 Feb 2009 06:43:34 -0800 (PST)

apparently the cleanup procedure occassionally fails when we copy new files to the working directory from another server and upon commit the permissions for some files in the .svn directory/ies are not appropiate.

#!/bin/bash

[[ "$1" == "/" ]] && { echo "Please don't chown your root partition." ; exit; }
[[ "$1" == "." ]] && { echo "Please use real directory name" ; exit; }
[ -z "$1" ] && { echo "Usage: $0 <dir or file>" ;exit; }

ls -alR "`pwd`/$1" | grep /.svn | sed -e "s/://g" | xargs chmod --preserve-root -R 770;

> http://www.bennadel.com/blog/1329-Subversion-Cleanup-Failed-To-Process-T
> he-Following-Paths.htm
>
>
>
> hey there,
>
> I wanted to know whether this bug was fixed and in what version if so?
>
>
>
> thanks

------------------------------------------------------
http://subversion.tigris.org/ds/viewMessage.do?dsForumId=1065&dsMessageId=1203381

To unsubscribe from this discussion, e-mail: [users-unsubscribe_at_subversion.tigris.org].
Received on 2009-02-21 16:19:05 CET

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.