Skip to content

Commit

Permalink
Merge pull request #592 from kagg-design/fix-excluding-dirs-on-windows
Browse files Browse the repository at this point in the history
Fix ignoring dirs on Windows.
  • Loading branch information
mukeshpanchal27 authored Aug 29, 2024
2 parents 07dbc1d + faf1c54 commit 7d583ea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion includes/Checker/Checks/Abstract_File_Check.php
Original file line number Diff line number Diff line change
Expand Up @@ -286,7 +286,7 @@ private static function get_files( Check_Context $plugin ) {
continue;
}

$file_path = $file->getPathname();
$file_path = wp_normalize_path( $file->getPathname() );

$directories_to_ignore = Plugin_Request_Utility::get_directories_to_ignore();

Expand Down

0 comments on commit 7d583ea

Please sign in to comment.