summaryrefslogtreecommitdiff
path: root/src/rebar_prv_release.erl
diff options
context:
space:
mode:
authorTristan Sloughter <t@crashfast.com>2014-12-01 17:54:47 -0600
committerTristan Sloughter <t@crashfast.com>2014-12-01 17:54:47 -0600
commit8e5c916cb6e93b484278e7463af3e7b07fe6db07 (patch)
tree4ed19adaa283c3dbd24e6b99f6531e8408b0059d /src/rebar_prv_release.erl
parentfa71d55b0d41312968af0374c9adea27879ce04e (diff)
move dir functions from utils to new module rebar_dir
Diffstat (limited to 'src/rebar_prv_release.erl')
-rw-r--r--src/rebar_prv_release.erl4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/rebar_prv_release.erl b/src/rebar_prv_release.erl
index 7ec8ead..d9cc40f 100644
--- a/src/rebar_prv_release.erl
+++ b/src/rebar_prv_release.erl
@@ -33,8 +33,8 @@ init(State) ->
-spec do(rebar_state:t()) -> {ok, rebar_state:t()} | {error, string()}.
do(State) ->
Options = rebar_state:command_args(State),
- DepsDir = [rebar_utils:default_deps_dir(State)], % rebar_utils:deps_dir(State)],
- OutputDir = filename:join(rebar_utils:profile_dir(State), ?DEFAULT_RELEASE_DIR),
+ DepsDir = [rebar_dir:default_deps_dir(State)], % rebar_dir:deps_dir(State)],
+ OutputDir = filename:join(rebar_dir:profile_dir(State), ?DEFAULT_RELEASE_DIR),
AllOptions = string:join(["release" | Options], " "),
try
case rebar_state:get(State, relx, []) of