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

Re: [PATCH] Change file names in text-base and prop-base

From: Kevin Pilch-Bisson <kevin_at_pilch-bisson.net>
Date: 2001-11-09 19:23:36 CET

On Fri, Nov 09, 2001 at 10:27:37AM -0800, Greg Stein wrote:
> On Thu, Nov 08, 2001 at 01:51:50PM -0500, Kevin Pilch-Bisson wrote:
> >...
> > Here it is:
> >
> > #!/bin/sh
> >
> > SVN_DIRS=`find . -name working_copies -prune -o -name .svn -type d -print`
> > for dir in $SVN_DIRS; do
> > TEXT_BASE_FILES=`find $dir/text-base -type f -print`
> > TMP_TEXT_BASE_FILES=`find $dir/tmp/text-base -type f -print`
> > PROP_BASE_FILES=`find $dir/prop-base -type f -print`
> > TMP_PROP_BASE_FILES=`find $dir/tmp/prop-base -type f -print`
> > for file in $TEXT_BASE_FILES $TMP_TEXT_BASE_FILES; do
> > mv $file $file.base-svn
> > done
> > for file in $PROP_BASE_FILES $TMP_PROP_BASE_FILES; do
> > mv $file $file.base-svn
> > done
> > done
>
> Whoops. Those 'mv' lines should be $file.svn-base

well then SVN_WC__BASE_EXT should change in the patch too. :)
>
> Cheers,
> -g
>
> --
> Greg Stein, http://www.lyra.org/
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: dev-unsubscribe@subversion.tigris.org
> For additional commands, e-mail: dev-help@subversion.tigris.org
>

-- 
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Kevin Pilch-Bisson                    http://www.pilch-bisson.net
     "Historically speaking, the presences of wheels in Unix
     has never precluded their reinvention." - Larry Wall
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

  • application/pgp-signature attachment: stored
Received on Sat Oct 21 14:36:48 2006

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

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