diff options
Diffstat (limited to 'scripts/maintenance/shrink-manifest.pl')
-rwxr-xr-x | scripts/maintenance/shrink-manifest.pl | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/maintenance/shrink-manifest.pl b/scripts/maintenance/shrink-manifest.pl index 7be581448807..60cf9c5b46a0 100755 --- a/scripts/maintenance/shrink-manifest.pl +++ b/scripts/maintenance/shrink-manifest.pl @@ -6,11 +6,12 @@ use readcache; my %allNarFiles; +my %allLocalPaths; my %allPatches; foreach my $manifest (glob "/data/webserver/dist/*/*/MANIFEST") { print STDERR "loading $manifest\n"; - readManifest($manifest, \%allNarFiles, \%allPatches, 1); + readManifest($manifest, \%allNarFiles, \%allLocalPaths, \%allPatches, 1); } |