mirror of
https://github.com/strapi/strapi.git
synced 2025-12-27 07:03:38 +00:00
Fix esint in generators folder
This commit is contained in:
parent
e57f02d2d9
commit
04f218346d
@ -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();
|
||||
}
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user