mirror of
https://github.com/correl/rebar.git
synced 2024-11-23 19:19:54 +00:00
Fix handling of raw deps
This commit is contained in:
parent
f911f8f99c
commit
f1b1dd837f
1 changed files with 7 additions and 1 deletions
|
@ -571,7 +571,13 @@ update_source(Config, Dep) ->
|
|||
|
||||
Env = setup_env(Config1),
|
||||
|
||||
{true, ModuleSetFile} = rebar_app_utils:is_app_dir(AppDir),
|
||||
case Dep#dep.is_raw of
|
||||
false ->
|
||||
{true, ModuleSetFile} = rebar_app_utils:is_app_dir(AppDir);
|
||||
true ->
|
||||
%% I have no idea...
|
||||
ModuleSetFile = ""
|
||||
end,
|
||||
|
||||
%% Execute any before_command plugins on this directory
|
||||
Config2 = rebar_core:execute_pre('update-deps', [],
|
||||
|
|
Loading…
Reference in a new issue