Skip to content

Commit

Permalink
Fix duplicated message in file type check
Browse files Browse the repository at this point in the history
  • Loading branch information
ernilambar committed Dec 20, 2024
1 parent 012db17 commit 6210ffa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion includes/Checker/Checks/Plugin_Repo/File_Type_Check.php
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,7 @@ protected function look_for_hidden_files( Check_Result $result, array $files ) {
protected function look_for_application_files( Check_Result $result, array $files ) {
$application_files = self::filter_files_by_extensions(
$files,
array( 'a', 'bin', 'bpk', 'deploy', 'dist', 'distz', 'dmg', 'dms', 'DS_Store', 'dump', 'elc', 'exe', 'iso', 'lha', 'lrf', 'lzh', 'o', 'obj', 'phar', 'pkg', 'sh', 'so' )
array( 'a', 'bin', 'bpk', 'deploy', 'dist', 'distz', 'dmg', 'dms', 'dump', 'elc', 'exe', 'iso', 'lha', 'lrf', 'lzh', 'o', 'obj', 'phar', 'pkg', 'sh', 'so' )
);
if ( $application_files ) {
foreach ( $application_files as $file ) {
Expand Down

0 comments on commit 6210ffa

Please sign in to comment.