forked from ungleich-public/cdist
remove duplicates from conf dirs while preserving order
Signed-off-by: Steven Armstrong <steven@icarus.ethz.ch>
This commit is contained in:
parent
76d978d3d8
commit
e19c1bb1e0
1 changed files with 3 additions and 1 deletions
|
@ -199,7 +199,9 @@ def resolve_conf_dirs(configuration, add_conf_dirs):
|
|||
|
||||
if add_conf_dirs:
|
||||
conf_dirs.extend(add_conf_dirs)
|
||||
conf_dirs = set(conf_dirs)
|
||||
|
||||
# Remove duplicates.
|
||||
conf_dirs = list(dict.fromkeys(conf_dirs))
|
||||
return conf_dirs
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue