diff options
Diffstat (limited to 'src/rebar_prv_release.erl')
-rw-r--r-- | src/rebar_prv_release.erl | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/rebar_prv_release.erl b/src/rebar_prv_release.erl index 982b392..dc58047 100644 --- a/src/rebar_prv_release.erl +++ b/src/rebar_prv_release.erl @@ -32,7 +32,6 @@ init(State) -> -spec do(rebar_state:t()) -> {ok, rebar_state:t()} | {error, string()}. do(State) -> - Caller = rebar_state:get(State, caller, api), Options = rebar_state:command_args(State), DepsDir = rebar_dir:deps_dir(State), ProjectAppDirs = lists:delete(".", ?DEFAULT_PROJECT_APP_DIRS), @@ -48,12 +47,12 @@ do(State) -> [] -> relx:main([{lib_dirs, LibDirs} ,{output_dir, OutputDir} - ,{caller, Caller}], AllOptions); + ,{caller, api}], AllOptions); Config -> relx:main([{lib_dirs, LibDirs} ,{config, lists:reverse(Config)} ,{output_dir, OutputDir} - ,{caller, Caller}], AllOptions) + ,{caller, api}], AllOptions) end, rebar_hooks:run_all_hooks(Cwd, post, ?PROVIDER, Providers, State), {ok, State} |