mirror of
https://github.com/correl/rebar.git
synced 2024-12-18 03:00:17 +00:00
Re-use rebar_utils:ebin_dir()
This commit is contained in:
parent
e2492eb37f
commit
491d52298e
4 changed files with 4 additions and 10 deletions
|
@ -87,12 +87,9 @@ setup_code_path() ->
|
|||
%% and the like can work properly when generating their own
|
||||
%% documentation.
|
||||
CodePath = code:get_path(),
|
||||
true = code:add_patha(ebin_dir()),
|
||||
true = code:add_patha(rebar_utils:ebin_dir()),
|
||||
CodePath.
|
||||
|
||||
ebin_dir() ->
|
||||
filename:join(rebar_utils:get_cwd(), "ebin").
|
||||
|
||||
newer_file_exists(Paths, LastMod) ->
|
||||
CheckFile = fun(Filename, _) ->
|
||||
FLast = filelib:last_modified(Filename),
|
||||
|
|
|
@ -83,7 +83,7 @@
|
|||
compile(Config, _AppFile) ->
|
||||
DtlOpts = erlydtl_opts(Config),
|
||||
OrigPath = code:get_path(),
|
||||
true = code:add_path(filename:join(rebar_utils:get_cwd(), "ebin")),
|
||||
true = code:add_path(rebar_utils:ebin_dir()),
|
||||
Result = rebar_base_compiler:run(Config, [],
|
||||
option(doc_root, DtlOpts),
|
||||
option(source_ext, DtlOpts),
|
||||
|
|
|
@ -38,7 +38,7 @@ shell(_Config, _AppFile) ->
|
|||
%% for the "top level" directory
|
||||
case is_deps_dir(rebar_utils:get_cwd()) of
|
||||
false ->
|
||||
true = code:add_pathz(ebin_dir()),
|
||||
true = code:add_pathz(rebar_utils:ebin_dir()),
|
||||
user_drv:start(),
|
||||
%% this call never returns (until user quits shell)
|
||||
shell:server(false, false);
|
||||
|
@ -47,9 +47,6 @@ shell(_Config, _AppFile) ->
|
|||
end,
|
||||
ok.
|
||||
|
||||
ebin_dir() ->
|
||||
filename:join(rebar_utils:get_cwd(), "ebin").
|
||||
|
||||
is_deps_dir(Dir) ->
|
||||
case lists:reverse(filename:split(Dir)) of
|
||||
[_, "deps" | _] ->
|
||||
|
|
|
@ -53,7 +53,7 @@ xref(Config, _) ->
|
|||
|
||||
%% Save the code path prior to doing anything
|
||||
OrigPath = code:get_path(),
|
||||
true = code:add_path(filename:join(rebar_utils:get_cwd(), "ebin")),
|
||||
true = code:add_path(rebar_utils:ebin_dir()),
|
||||
|
||||
%% Get list of xref checks we want to run
|
||||
XrefChecks = rebar_config:get(Config, xref_checks,
|
||||
|
|
Loading…
Reference in a new issue