fix(installer): retain preserved module config in quick update
This commit is contained in:
parent
c11efd46d4
commit
f0a22c2863
|
|
@ -1270,6 +1270,11 @@ class Installer {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
for (const moduleName of skippedModules) {
|
||||||
|
if (quickModules.collectedConfig[moduleName] || !quickModules.existingConfig?.[moduleName]) continue;
|
||||||
|
quickModules.collectedConfig[moduleName] = { ...quickModules.existingConfig[moduleName] };
|
||||||
|
}
|
||||||
|
|
||||||
if (!promptedForNewFields) {
|
if (!promptedForNewFields) {
|
||||||
await prompts.log.success('All configuration is up to date, no new options to configure');
|
await prompts.log.success('All configuration is up to date, no new options to configure');
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue