This worked like a charm, mreece, thanks!
On Aug 31, 2006, at 12:46 PM, Michael Reece wrote:
looks to me like this pattern:
.*.(framework|app|pbproj|pbxproj|xcode(proj)?|bundle|archive)
is matching folder names that have these extensions; anything (.*) followed by a dot (.) followed by one of those patterns.
you should put archive outside that closing paren, or near the front:
.*/(.[^/]*|CVS|_darcs|{arch}|blib|.*~.nib|.*.(framework|app| pbproj|pbxproj|xcode(proj)?|bundle)|archive)$
or
.*/(.[^/]*|archive|CVS|_darcs|{arch}|blib|.*~.nib|.*. (framework|app|pbproj|pbxproj|xcode(proj)?|bundle))$