You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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/" in ignored_path. This might have broken with #67 . Previously the line would have been /logs/, but something in the way it's looking now it's not using the preceding directory separator when matching. "blogs" is a pretty common directory for WP sites. I could also see "js/" resulting in false positives with the current way this is matching.
The text was updated successfully, but these errors were encountered:
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/"
in ignored_path. This might have broken with #67 . Previously the line would have been /logs/, but something in the way it's looking now it's not using the preceding directory separator when matching. "blogs" is a pretty common directory for WP sites. I could also see"js/"
resulting in false positives with the current way this is matching.The text was updated successfully, but these errors were encountered: