about summary refs log tree commit diff
path: root/scripts/update-manifest.pl
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/update-manifest.pl')
-rwxr-xr-xscripts/update-manifest.pl3
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/update-manifest.pl b/scripts/update-manifest.pl
index 566f6467328d..ac0ce749d9ab 100755
--- a/scripts/update-manifest.pl
+++ b/scripts/update-manifest.pl
@@ -8,9 +8,10 @@ die unless scalar @ARGV == 2;
 my $cache = $ARGV[0];
 my $manifest = $ARGV[1];
 my %narFiles;
+my %localPaths;
 my %patches;
 
-readManifest $manifest, \%narFiles, \%patches;
+readManifest $manifest, \%narFiles, \%localPaths, \%patches;
 
 foreach my $storePath (keys %narFiles) {
     my $narFileList = $narFiles{$storePath};