浏览代码

Fix dialyzer warning. Thanks Kostis

Tuncer Ayaz 14 年前
父节点
当前提交
933e4f7620
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. +1
    -1
      src/rebar_core.erl

+ 1
- 1
src/rebar_core.erl 查看文件

@ -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, "*", "n>ebin"])),
FqApps = [filename:join([Root, A]) || A <- Apps],
expand_lib_dirs(Rest, Root, Acc ++ FqApps).

正在加载...
取消
保存