This commit is contained in:
Bernhard Posselt 2015-02-05 15:48:58 +01:00
parent 7a9d428d6f
commit 71f32745b6
1 changed files with 1 additions and 1 deletions

View File

@ -44,7 +44,7 @@ sub crawlFiles{
push( @found, crawlFiles( $dir.'/'.$i )); push( @found, crawlFiles( $dir.'/'.$i ));
} }
else{ else{
push(@found,$dir.'/'.$i) if $i =~ /\.js$/ || $i =~ /\.php$/; push(@found,$dir.'/'.$i) if $i =~ /.*(?<!\.min)\.js$/ || $i =~ /\.php$/;
} }
} }