📄 Fix comment

This commit is contained in:
C-3PO 2018-11-16 03:06:34 +01:00
parent d9318bfb20
commit 064e7be78b
Signed by: c3po
GPG key ID: 62993C4BB4D86F24

View file

@ -11,7 +11,7 @@ export default function downloadWithCurl({ host, path, tempFileName }: {host: st
const parameters: string[] = [
//...
'--silent',
'--limit-rate', '20m', //maximum speed of 30 MB/s = 240 MBit/s
'--limit-rate', '20m', //maximum speed of 20 MB/s = 160 MBit/s
'--speed-limit', String(Math.round(100 * 1024 * 1024 / 15)), //abort if less than 100 MB in 15 seconds
'--speed-time', '15',
'--output', tempFileName,