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
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