Stop saving config in initConfig()

This commit is contained in:
Chuan-kai Lin
2025-09-11 12:31:29 -07:00
parent 4e2e64a92a
commit 5c30ae46c1
4 changed files with 9 additions and 10 deletions

View File

@@ -1189,9 +1189,6 @@ export async function initConfig(inputs: InitConfigInputs): Promise<Config> {
exclude: { tags: "exclude-from-incremental" },
});
}
// Save the config so we can easily access it again in the future
await saveConfig(config, logger);
return config;
}