1
0
Fork 0
mirror of https://github.com/sbrl/terrain50-cli.git synced 2024-06-09 08:24:56 +00:00

stream-slice: fix off-by-1

This commit is contained in:
Starbeamrainbowlabs 2020-07-02 17:25:53 +01:00
parent 6cd4b78fb1
commit 4887e5288d
Signed by: sbrl
GPG key ID: 1BE5172E637709C2

View file

@ -38,12 +38,15 @@ export default async function(settings) {
if(i < offset) continue;
let is_last = i - offset >= count;
// Write it to the output
let is_last = i - offset >= count - 1;
await next.serialise(stream_out, is_last);
// Don't go further than we need to
if(is_last) break;
l.log(`Written ${i - offset} / count objects (~${percentage(i - offset, count).toFixed(2)}%) \r`);
// Update the user
l.log(`Written ${i - offset} / count objects (~${percentage(i - offset, count).toFixed(2)}%)`);
}
l.log(`Slicing complete`);