Concatenate arrays in the config when loading multiple files

This commit is contained in:
Quentin Gliech
2024-11-28 16:53:38 +01:00
parent 56edcb4e52
commit 24be677a06
+1 -1
View File
@@ -96,6 +96,6 @@ impl Options {
configs
.into_iter()
.fold(base, |f, path| f.merge(Yaml::file(path)))
.fold(base, |f, path| f.admerge(Yaml::file(path)))
}
}