mirror of
https://github.com/ajnart/homarr.git
synced 2025-11-17 18:51:14 +01:00
Fix not filtering .json files for config
This commit is contained in:
@@ -6,6 +6,10 @@ import { migrateConfig } from './migrateConfig';
|
||||
export function backendMigrateConfig(config: Config, name: string): ConfigType {
|
||||
const migratedConfig = migrateConfig(config);
|
||||
|
||||
// Make a backup of the old file ./data/configs/${name}.json
|
||||
// New name is ./data/configs/${name}.bak
|
||||
fs.copyFileSync(`./data/configs/${name}.json`, `./data/configs/${name}.json.bak`);
|
||||
|
||||
// Overrite the file ./data/configs/${name}.json
|
||||
// with the new config format
|
||||
fs.writeFileSync(`./data/configs/${name}.json`, JSON.stringify(migratedConfig, null, 2));
|
||||
|
||||
Reference in New Issue
Block a user