Skip to content

Commit

Permalink
fix external (non-rebar3) project compile
Browse files Browse the repository at this point in the history
  • Loading branch information
aboroska committed Dec 13, 2018
1 parent 8e28561 commit 5c77ad0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/rebar_fetch.erl
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ download_source(AppInfo, State) ->
{true, AppInfo2} ->
rebar_app_info:is_available(AppInfo2, true);
false ->
throw(?PRV_ERROR({dep_app_not_found, rebar_app_info:name(AppInfo1)}))
rebar_app_info:is_available(AppInfo1, true)
end;
{error, Reason} ->
throw(?PRV_ERROR(Reason))
Expand Down

0 comments on commit 5c77ad0

Please sign in to comment.