Deduplicate parsed plugin directory list in one more place

References #3155
This commit is contained in:
Michael Klishin 2021-06-28 18:38:22 +03:00
parent d0ad77f10d
commit 17a1f4fa3e
No known key found for this signature in database
GPG Key ID: E80EDCFA0CDB21EE
1 changed files with 1 additions and 1 deletions

View File

@ -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) ->