Provide hashes for uncompressed Translation-* again

Implemented in 2f34797490 for bug #767253
released a few months later in v3.1.17, but then broken again a few days
later in 9dd0616b78 by removing the
uncompressed files too early.
This commit is contained in:
David Kalnischkies 2018-01-07 17:06:40 +01:00 committed by Steve McIntyre
parent fa2e4f0028
commit 270eabfa43
1 changed files with 0 additions and 1 deletions

View File

@ -652,7 +652,6 @@ sub recompress {
if ($filename =~ m/\/.*\/i18n\/(Translation.*)$/o && if ($filename =~ m/\/.*\/i18n\/(Translation.*)$/o &&
! ($filename =~ m/\/.*\/i18n\/(Translation.*gz)$/o)) { ! ($filename =~ m/\/.*\/i18n\/(Translation.*gz)$/o)) {
system("gzip -9c < $_ >$_.gz"); system("gzip -9c < $_ >$_.gz");
unlink ($_);
} }
} }