diff options
Diffstat (limited to 'scripts/maintenance')
-rwxr-xr-x | scripts/maintenance/gc-releases.pl | 3 | ||||
-rwxr-xr-x | scripts/maintenance/shrink-manifest.pl | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/scripts/maintenance/gc-releases.pl b/scripts/maintenance/gc-releases.pl index 80b2726c5a04..b8abb034771e 100755 --- a/scripts/maintenance/gc-releases.pl +++ b/scripts/maintenance/gc-releases.pl @@ -7,11 +7,12 @@ use readcache; # Read the manifests. my %narFiles; +my %localPaths; my %patches; foreach my $manifest (@ARGV) { print STDERR "loading $manifest\n"; - if (readManifest($manifest, \%narFiles, \%patches, 1) < 3) { + if (readManifest($manifest, \%narFiles, \%localPaths, \%patches, 1) < 3) { # die "manifest `$manifest' is too old (i.e., for Nix <= 0.7)\n"; } } 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); } |