From c77f8e13cafc5913b417c9c3845abfe49f87655d Mon Sep 17 00:00:00 2001 From: Dave Smith Date: Sat, 2 Mar 2013 08:25:28 -0700 Subject: [PATCH] Fix missing call to cwd_predirs --- src/rebar_core.erl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/rebar_core.erl b/src/rebar_core.erl index eee5239..36923a5 100644 --- a/src/rebar_core.erl +++ b/src/rebar_core.erl @@ -45,9 +45,9 @@ help(ParentConfig, Commands) -> %% get plugin modules Predirs = [], Dir = rebar_utils:get_cwd(), - SubdirAssoc = remember_cwd_subdir(Dir, Predirs), + PredirsAssoc = remember_cwd_predirs(Dir, Predirs), Config = maybe_load_local_config(Dir, ParentConfig), - {ok, PluginModules} = plugin_modules(Config, SubdirAssoc), + {ok, PluginModules} = plugin_modules(Config, PredirsAssoc), AllModules = CoreModules ++ PluginModules,