From c8540338321151ba85779703df47d39b30c09cec Mon Sep 17 00:00:00 2001 From: Daniel Widgren Date: Sat, 2 Mar 2024 23:49:07 +0100 Subject: [PATCH] added default compile to compile deps --- src/rebar3_lfe_prv_compile.erl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/rebar3_lfe_prv_compile.erl b/src/rebar3_lfe_prv_compile.erl index 5101360..e1c624f 100644 --- a/src/rebar3_lfe_prv_compile.erl +++ b/src/rebar3_lfe_prv_compile.erl @@ -12,7 +12,7 @@ -define(PROVIDER, compile). -define(NAMESPACE_PROVIDER, {?NAMESPACE, ?PROVIDER}). --define(DEPS, [{default, lock}]). +-define(DEPS, [{default, lock}, {default, compile}]). %% ============================================================================= %% Plugin API @@ -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}.