Deduplicate parsed plugin directory list in one more place
References #3155
This commit is contained in:
parent
d0ad77f10d
commit
17a1f4fa3e
|
@ -548,7 +548,7 @@ split_path(PathString) ->
|
|||
{unix, _} -> ":";
|
||||
{win32, _} -> ";"
|
||||
end,
|
||||
string:tokens(PathString, Delimiters).
|
||||
lists:usort(string:tokens(PathString, Delimiters)).
|
||||
|
||||
%% Search for files using glob in a given dir. Returns full filenames of those files.
|
||||
full_path_wildcard(Glob, Dir) ->
|
||||
|
|
Loading…
Reference in New Issue