diff options
author | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2013-07-01T11·29+0200 |
---|---|---|
committer | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2013-07-01T11·29+0200 |
commit | 1917d750a0363f678a93c80c5a4e48e7493b1786 (patch) | |
tree | 44063d22c93ba720e4987b888485ab1c611bf340 /scripts/copy-from-other-stores.pl.in | |
parent | 7ccd9464077180f633e65c15906bdda707077e8c (diff) |
copy-from-other-stores.pl: Report downloaded size as 0
Diffstat (limited to 'scripts/copy-from-other-stores.pl.in')
-rwxr-xr-x | scripts/copy-from-other-stores.pl.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/copy-from-other-stores.pl.in b/scripts/copy-from-other-stores.pl.in index 7a7c30cdfb23..6a0de1f050e5 100755 --- a/scripts/copy-from-other-stores.pl.in +++ b/scripts/copy-from-other-stores.pl.in @@ -73,7 +73,7 @@ if ($ARGV[0] eq "--query") { print "$deriver\n"; print scalar @references, "\n"; print "$_\n" foreach @references; - print "$narSize\n"; + print "0\n"; print "$narSize\n"; } |