diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/rcl_prv_discover.erl | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/rcl_prv_discover.erl b/src/rcl_prv_discover.erl index fa810a6..3627787 100644 --- a/src/rcl_prv_discover.erl +++ b/src/rcl_prv_discover.erl @@ -97,6 +97,7 @@ add_common_project_dirs(State) -> Apps = filename:join(Root, "apps"), Lib = filename:join(Root, "lib"), Deps = filename:join(Root, "deps"), + Ebin = filename:join(Root, "ebin"), lists:foldl(fun(Dir, LibDirs) -> case ec_file:exists(Dir) of true -> @@ -104,7 +105,7 @@ add_common_project_dirs(State) -> false -> LibDirs end - end, [], [Deps, Lib, Apps]) + end, [], [Deps, Lib, Apps, Ebin]) end. -spec add_system_lib_dir(rcl_state:t()) -> [file:name()]. |