Re: daemon excludes all my files

2006-09-25 Thread Timothy Madden
On 9/24/06, Matt McCutchen <[EMAIL PROTECTED]> wrote: The trouble is that your .* exclude pattern is matching . , the top level of the module, because * can match the empty string: > skipping server-excluded file "." If your intent was to match hidden files, change the pattern to .?* to match a

Re: daemon excludes all my files

2006-09-23 Thread Matt McCutchen
The trouble is that your .* exclude pattern is matching . , the top level of the module, because * can match the empty string: skipping server-excluded file "." If your intent was to match hidden files, change the pattern to .?* to match a period followed by at least one character. Are you su