diff options
Diffstat (limited to 'src/rebar_git_resource.erl')
-rw-r--r-- | src/rebar_git_resource.erl | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/rebar_git_resource.erl b/src/rebar_git_resource.erl index cec7bfc..b2db6ca 100644 --- a/src/rebar_git_resource.erl +++ b/src/rebar_git_resource.erl @@ -6,11 +6,14 @@ -export([init/2, lock/2, - download/3, download/4, needs_update/2, make_vsn/2]). +%% For backward compatibilty +-export ([ download/3 + ]). + -include("rebar.hrl"). %% Regex used for parsing scp style remote url @@ -124,6 +127,7 @@ download(TmpDir, AppInfo, State, _) -> {error, Error} end. +%% For backward compatibilty download(Dir, AppInfo, State) -> download_(Dir, AppInfo, State). |