mirror of
https://github.com/correl/rebar.git
synced 2024-12-18 11:06:20 +00:00
Fix whitespace error
This commit is contained in:
parent
991e2ce8e1
commit
6c1694980c
1 changed files with 2 additions and 3 deletions
|
@ -257,11 +257,10 @@ doterl_compile(Config, OutDir, MoreSources) ->
|
||||||
ok = filelib:ensure_dir(filename:join("ebin", "dummy.beam")),
|
ok = filelib:ensure_dir(filename:join("ebin", "dummy.beam")),
|
||||||
CurrPath = code:get_path(),
|
CurrPath = code:get_path(),
|
||||||
true = code:add_path(filename:absname("ebin")),
|
true = code:add_path(filename:absname("ebin")),
|
||||||
|
OutDir1 = proplists:get_value(outdir, ErlOpts, OutDir),
|
||||||
rebar_base_compiler:run(Config, NewFirstErls, OtherErls,
|
rebar_base_compiler:run(Config, NewFirstErls, OtherErls,
|
||||||
fun(S, C) ->
|
fun(S, C) ->
|
||||||
internal_erl_compile(C, S,
|
internal_erl_compile(C, S, OutDir1, ErlOpts)
|
||||||
proplists:get_value(outdir, ErlOpts, OutDir),
|
|
||||||
ErlOpts)
|
|
||||||
end),
|
end),
|
||||||
true = code:set_path(CurrPath),
|
true = code:set_path(CurrPath),
|
||||||
ok.
|
ok.
|
||||||
|
|
Loading…
Reference in a new issue