Fix esint in generators folder

This commit is contained in:
Alexandre Bodin 2022-09-05 15:19:02 +02:00
parent e57f02d2d9
commit 04f218346d

View File

@ -61,7 +61,7 @@ async function askDbInfosAndTest(scope) {
.then((result) => {
if (result && result.shouldRetry === true && retries < MAX_RETRIES - 1) {
console.log('Retrying...');
retries++;
retries += 1;
return loop();
}
})
@ -86,7 +86,7 @@ async function askDbInfosAndTest(scope) {
}
console.log('Retrying...');
retries++;
retries += 1;
return loop();
}