|
|
@@ -164,11 +164,7 @@ project_app_dirs(Edition) ->
|
|
|
|| Path <- filelib:wildcard("apps/*"),
|
|
|
is_community_umbrella_app(Path) orelse IsEnterprise
|
|
|
],
|
|
|
- UmbrellaApps ++
|
|
|
- case IsEnterprise of
|
|
|
- true -> ["lib-ee/*"];
|
|
|
- false -> []
|
|
|
- end.
|
|
|
+ UmbrellaApps.
|
|
|
|
|
|
plugins() ->
|
|
|
[
|
|
|
@@ -539,8 +535,7 @@ provide_bcrypt_release(ReleaseType) ->
|
|
|
|
|
|
erl_opts_i() ->
|
|
|
[{i, "apps"}] ++
|
|
|
- [{i, Dir} || Dir <- filelib:wildcard(filename:join(["apps", "*", "include"]))] ++
|
|
|
- [{i, Dir} || Dir <- filelib:wildcard(filename:join(["lib-ee", "*", "include"]))].
|
|
|
+ [{i, Dir} || Dir <- filelib:wildcard(filename:join(["apps", "*", "include"]))].
|
|
|
|
|
|
dialyzer(Config) ->
|
|
|
{dialyzer, OldDialyzerConfig} = lists:keyfind(dialyzer, 1, Config),
|
|
|
@@ -597,7 +592,7 @@ coveralls() ->
|
|
|
[]
|
|
|
end.
|
|
|
|
|
|
-app_names() -> list_dir("apps") ++ list_dir("lib-ee").
|
|
|
+app_names() -> list_dir("apps").
|
|
|
|
|
|
list_dir(Dir) ->
|
|
|
case filelib:is_dir(Dir) of
|