Tom
|
Re:Script for using bundles in subversion - 2006/08/09 12:05
OK I changed the offending line to this (basically added the -print0 option and the -0 flag)
| Code: | `find $bundle_dir -type f -print0|grep -v .svn|xargs -0 rm`; # get rid of all the files
|
So it works now but it never matches anything in the 'while' loop to remove missings files and/or add unversioned files.
|