find-command icon indicating copy to clipboard operation
find-command copied to clipboard

Find WordPress installations on the filesystem

Results 2 find-command issues
Sort by recently updated
recently updated
newest added

I noticed today that a customer's WP installation wasn't getting found. Verbose output found the following: `[0:00:39] Matched ignored path. Skipping recursion into '/home/username/wpblogs/'` This seems to be matching `"logs/"`...

bug

The ignored paths filter was using substring matching, causing directories like `wpblogs/` and `myjs/` to be incorrectly skipped because they contain the ignored patterns `logs/` and `js/`. ## Changes **src/Find_Command.php**...