We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ad4152a commit 30ae3a2Copy full SHA for 30ae3a2
1 file changed
src/infrastructure/application/cli/cli.ts
@@ -2278,14 +2278,14 @@ export class Cli {
2278
workingDirectory: this.workingDirectory,
2279
configurationProvider: this.getCliConfigurationProvider(),
2280
manager: new CachedConfigurationManager(
2281
- this.configuration.interactive && !this.isReadOnlyMode()
2282
- ? new NewConfigurationManager({
+ this.isReadOnlyMode()
+ ? manager
2283
+ : new NewConfigurationManager({
2284
manager: manager,
2285
initializer: {
2286
initialize: () => this.init({}),
2287
},
- })
2288
- : manager,
+ }),
2289
),
2290
});
2291
0 commit comments