summaryrefslogtreecommitdiff
path: root/src/rebar_shell.erl
diff options
context:
space:
mode:
Diffstat (limited to 'src/rebar_shell.erl')
-rw-r--r--src/rebar_shell.erl5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/rebar_shell.erl b/src/rebar_shell.erl
index 0426f24..2dbf4a0 100644
--- a/src/rebar_shell.erl
+++ b/src/rebar_shell.erl
@@ -38,7 +38,7 @@ shell(_Config, _AppFile) ->
%% for the "top level" directory
case is_deps_dir(rebar_utils:get_cwd()) of
false ->
- true = code:add_pathz(ebin_dir()),
+ true = code:add_pathz(rebar_utils:ebin_dir()),
user_drv:start(),
%% this call never returns (until user quits shell)
shell:server(false, false);
@@ -47,9 +47,6 @@ shell(_Config, _AppFile) ->
end,
ok.
-ebin_dir() ->
- filename:join(rebar_utils:get_cwd(), "ebin").
-
is_deps_dir(Dir) ->
case lists:reverse(filename:split(Dir)) of
[_, "deps" | _] ->