about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--scripts/download-using-manifests.pl.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/download-using-manifests.pl.in b/scripts/download-using-manifests.pl.in
index c31a294e8800..c50f540f3464 100644
--- a/scripts/download-using-manifests.pl.in
+++ b/scripts/download-using-manifests.pl.in
@@ -90,7 +90,7 @@ sub computeSmallestDownload {
 
     while ($queueFront < scalar @queue) {
         my $u = $queue[$queueFront++];
-        return if defined $done{$u};
+        next if defined $done{$u};
         $done{$u} = 1;
 
         addNode \%graph, $u;