Remove redundant variable. (#713)
This commit is contained in:
parent
74801e9004
commit
cf3e1a07c1
|
@ -116,12 +116,8 @@ async function main() {
|
|||
}
|
||||
|
||||
// Non-interactive mode handled by runNonInteractive
|
||||
const nonInteractiveConfigResult = await loadNonInteractiveConfig(
|
||||
config,
|
||||
settings,
|
||||
);
|
||||
const nonInteractiveConfig = await loadNonInteractiveConfig(config, settings);
|
||||
|
||||
const nonInteractiveConfig = nonInteractiveConfigResult;
|
||||
await runNonInteractive(nonInteractiveConfig, input);
|
||||
process.exit(0);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue