about summary refs log tree commit diff
path: root/scripts
diff options
context:
space:
mode:
authorEelco Dolstra <e.dolstra@tudelft.nl>2010-11-17T17·54+0000
committerEelco Dolstra <e.dolstra@tudelft.nl>2010-11-17T17·54+0000
commit1a211d812f1808a5a9128cbfd74bb59d07487b1c (patch)
treedda0e51a721ef80e56ab3526edad705b85cb5ead /scripts
parenta4f0365b2dfc95b60c42a702937fc801dcc8d81b (diff)
* Oops.
Diffstat (limited to 'scripts')
-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 c31a294e88..c50f540f34 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;