Skip to content

Commit

Permalink
Merge pull request erlang#1511 from vladdu/patch-2
Browse files Browse the repository at this point in the history
minor fix: name of internal function
  • Loading branch information
alisdair sullivan authored Mar 6, 2017
2 parents 34697f1 + d4beb8e commit 86e883b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/rebar_prv_path.erl
Original file line number Diff line number Diff line change
Expand Up @@ -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}.

Expand Down Expand Up @@ -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)},
Expand Down

0 comments on commit 86e883b

Please sign in to comment.