Jakub Narebski <jnareb@xxxxxxxxx> writes: > + wanted => sub { > + # skip current directory > + return if (m!^/|.|..$!); Huh? (1) Did you mean to say "\." (not any single character but literally dot)? (2) how does the alternatives within m{} construct bind (iow, please be gentle to the readers)? Do you mean return if (/^\/(?:\.|\.\.)$/) in other words, return if (/^\/\.$/ || /^\/\.\.$/) in other words, return if (/^\/\.{1,2}/) ??? - To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html