mirror of
https://github.com/correl/rebar.git
synced 2024-11-15 03:00:18 +00:00
Fix dialyzer warning. Thanks Kostis
This commit is contained in:
parent
851c602b20
commit
933e4f7620
1 changed files with 1 additions and 1 deletions
|
@ -472,7 +472,7 @@ restore_code_path({old, Path}) ->
|
|||
expand_lib_dirs([], _Root, Acc) ->
|
||||
Acc;
|
||||
expand_lib_dirs([Dir | Rest], Root, Acc) ->
|
||||
Apps = filelib:wildcard(filename:join([Dir, "*", ebin])),
|
||||
Apps = filelib:wildcard(filename:join([Dir, "*", "ebin"])),
|
||||
FqApps = [filename:join([Root, A]) || A <- Apps],
|
||||
expand_lib_dirs(Rest, Root, Acc ++ FqApps).
|
||||
|
||||
|
|
Loading…
Reference in a new issue