Added missing option partsize

This commit is contained in:
Izuco 2022-01-06 17:45:07 +01:00
parent c89cea218c
commit 05d65d3d54
No known key found for this signature in database
GPG key ID: E9CBE9E4EF3A1BFA

View file

@ -485,6 +485,18 @@ const args: TAppArg<boolean|number|string|unknown[]>[] = [
default: {
default: false
}
},
{
name: 'partsize',
describe: 'Set the amount of parts to download at once',
docDescribe: 'Set the amount of parts to download at once\nIf you have a good connection try incresing this number to get a higher overall speed',
group: 'dl',
service: 'both',
type: 'number',
usage: '${amount}',
default: {
default: 10
}
}
];