Fix cli parser bug where it wouldn't add default config

This commit is contained in:
Jesse Wierzbinski 2024-03-12 08:36:39 -10:00
parent b8d2f8a940
commit 4a559e290e
No known key found for this signature in database

View file

@ -26,7 +26,7 @@ export class ConfigManager {
const config = await this.readConfig<T>();
const internalConfig = await this.readInternalConfig<T>();
return this.mergeConfigs<T>(config, internalConfig);
return this.mergeConfigs<T>(defaultConfig, config, internalConfig);
}
getConfigPath() {