Skip to content

Commit

Permalink
added default compile to compile deps
Browse files Browse the repository at this point in the history
  • Loading branch information
Taure authored and oubiwann committed Mar 5, 2024
1 parent e352256 commit c854033
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/rebar3_lfe_prv_compile.erl
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

-define(PROVIDER, compile).
-define(NAMESPACE_PROVIDER, {?NAMESPACE, ?PROVIDER}).
-define(DEPS, [{default, lock}]).
-define(DEPS, [{default, lock}, {default, compile}]).

%% =============================================================================
%% Plugin API
Expand Down Expand Up @@ -49,7 +49,7 @@ format_error(Reason) ->

compile(State) ->
rebar_api:debug("Compiling LFE apps ...", []),
rebar_paths:set_paths([deps], State),
rebar_paths:set_paths([deps], State),
Apps = rebar3_lfe_utils:get_apps(State),
[compile_app(AppInfo, State) || AppInfo <- Apps],
{ok, State}.
Expand Down

0 comments on commit c854033

Please sign in to comment.