Hey Everyone,
How can I ignore .dSYM folders? I've been fiddling with this for like an hour now and can't get the regular expression right in preferences. It's probably the most obvious thing in the world but it's eluding me.
This is my current folder ignore pattern
!.*/(.[^/]*|CVS|_darcs|_MTN|{arch}|blib|.*~.nib|.*.(framework|app|pbproj|pbxproj|xcode(proj)?|bundle))$
I've tried adding |.dSYM like this:
!.*/(.[^/]*|CVS|_darcs|_MTN|{arch}|blib|.*~.nib|.*.(framework|app|pbproj|pbxproj|xcode(proj)?|bundle)|.dSYM)$
And a couple other variations, but with no luck
Thanks for any help!
On 1 Jan 2011, at 01:01, Aaron Smith wrote:
This is my current folder ignore pattern
!.*/(.[^/]*|CVS|_darcs|_MTN|{arch}|blib|.*~.nib|.*.(framework|app|pbproj|pbxproj|xcode(proj)?|bundle))$
I've tried adding |.dSYM like this:
!.*/(.[^/]*|CVS|_darcs|_MTN|{arch}|blib|.*~.nib|.*.(framework|app|pbproj|pbxproj|xcode(proj)?|bundle)|.dSYM)$
And a couple other variations, but with no luck
I assume you want to ignore folders which has .dSYM *suffix*?
Try this one:
!.*/(.[^/]*|CVS|_darcs|_MTN|{arch}|blib|.*~.nib|.*.(dSYM|framework|app|pbproj|pbxproj|xcode(proj)?|bundle))$