diff options
-rw-r--r-- | src/rebar_prv_compile.erl | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/rebar_prv_compile.erl b/src/rebar_prv_compile.erl index 54bdee2..a509704 100644 --- a/src/rebar_prv_compile.erl +++ b/src/rebar_prv_compile.erl @@ -208,8 +208,12 @@ build_app(AppInfo, State) -> %% load plugins since thats where project builders would be PluginDepsPaths = rebar_state:code_paths(State, all_plugin_deps), code:add_pathsa(PluginDepsPaths), - Module:build(AppInfo), - rebar_utils:remove_from_code_path(PluginDepsPaths); + case Module:build(AppInfo) of + ok -> + rebar_utils:remove_from_code_path(PluginDepsPaths); + {error, Reason} -> + throw({error, {Module, Reason}}) + end; _ -> throw(?PRV_ERROR({unknown_project_type, rebar_app_info:name(AppInfo), Type})) end |