summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoralisdair sullivan <alisdairsullivan@yahoo.ca>2017-03-06 09:14:20 -0800
committerGitHub <noreply@github.com>2017-03-06 09:14:20 -0800
commit86e883b8d8d1d16487e245fff02eba8c83da2cdd (patch)
tree6c8dbfea31d103e00733a5229416421afc730755
parent34697f1f846939e4b16e98e54fcd0f55c555eb59 (diff)
parentd4beb8edf15f6e0122498ed6394fe933a0b9c4c7 (diff)
Merge pull request #1511 from vladdu/patch-2
minor fix: name of internal function
-rw-r--r--src/rebar_prv_path.erl4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/rebar_prv_path.erl b/src/rebar_prv_path.erl
index 4259eec..d8e14a4 100644
--- a/src/rebar_prv_path.erl
+++ b/src/rebar_prv_path.erl
@@ -27,7 +27,7 @@ init(State) ->
{example, "rebar3 path"},
{short_desc, "Print paths to build dirs in current profile."},
{desc, "Print paths to build dirs in current profile."},
- {opts, eunit_opts(State)}])),
+ {opts, path_opts(State)}])),
{ok, State1}.
@@ -107,7 +107,7 @@ normalize(AppName) when is_list(AppName) -> AppName;
normalize(AppName) when is_atom(AppName) -> atom_to_list(AppName);
normalize(AppName) when is_binary(AppName) -> binary_to_list(AppName).
-eunit_opts(_State) ->
+path_opts(_State) ->
[{app, undefined, "app", string, help(app)},
{base, undefined, "base", boolean, help(base)},
{bin, undefined, "bin", boolean, help(bin)},