mirror of
https://github.com/correl/rebar.git
synced 2024-11-14 19:19:30 +00:00
Skip check for ebin directory when building edoc
edoc target fails if ebin directory does not exist. ebin directory is not necessary for building edoc. Skip check that ebin directory exist.
This commit is contained in:
parent
71aedb8674
commit
dfc3cc5ad2
1 changed files with 1 additions and 1 deletions
|
@ -87,7 +87,7 @@ setup_code_path() ->
|
|||
%% and the like can work properly when generating their own
|
||||
%% documentation.
|
||||
CodePath = code:get_path(),
|
||||
true = code:add_patha(rebar_utils:ebin_dir()),
|
||||
_ = code:add_patha(rebar_utils:ebin_dir()),
|
||||
CodePath.
|
||||
|
||||
-type path_spec() :: {'file', file:filename()} | file:filename().
|
||||
|
|
Loading…
Reference in a new issue