summaryrefslogtreecommitdiffstats
path: root/l10n/l10n.pl
diff options
context:
space:
mode:
Diffstat (limited to 'l10n/l10n.pl')
-rw-r--r--l10n/l10n.pl3
1 files changed, 3 insertions, 0 deletions
diff --git a/l10n/l10n.pl b/l10n/l10n.pl
index fb1b522c255..27b14c41bef 100644
--- a/l10n/l10n.pl
+++ b/l10n/l10n.pl
@@ -12,6 +12,7 @@ sub crawlPrograms{
opendir( DIR, $dir );
my @files = readdir( DIR );
closedir( DIR );
+ @files = sort( @files );
foreach my $i ( @files ){
next if substr( $i, 0, 1 ) eq '.';
@@ -33,9 +34,11 @@ sub crawlFiles{
opendir( DIR, $dir );
my @files = readdir( DIR );
closedir( DIR );
+ @files = sort( @files );
foreach my $i ( @files ){
next if substr( $i, 0, 1 ) eq '.';
+ next if $i eq 'l10n';
if( -d $dir.'/'.$i ){
push( @found, crawlFiles( $dir.'/'.$i ));