chore: fix utils/check_availability.js

This commit is contained in:
Andrey Lushnikov 2020-06-30 16:54:52 -07:00
parent 1605cb453c
commit f00fc0760a

View File

@ -83,7 +83,7 @@ async function checkOmahaProxyAvailability() {
* @param {boolean} stopWhenAllAvailable
*/
async function checkRangeAvailability(fromRevision, toRevision, stopWhenAllAvailable) {
const table = new Table([10, 7, 7, 7, 7]);
const table = new Table([15, 7, 7, 7, 7]);
table.drawRow([''].concat(SUPPORTER_PLATFORMS));
const inc = fromRevision < toRevision ? 1 : -1;
for (let revision = fromRevision; revision !== toRevision; revision += inc) {