diff options
author | Vlad Dumitrescu <vladdu55@gmail.com> | 2017-03-06 18:13:35 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-03-06 18:13:35 +0100 |
commit | d4beb8edf15f6e0122498ed6394fe933a0b9c4c7 (patch) | |
tree | 6c8dbfea31d103e00733a5229416421afc730755 | |
parent | b763a9e14a0d96ad7663ea35c7d6be8b05c84006 (diff) |
fix "apps" name
-rw-r--r-- | src/rebar_prv_path.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rebar_prv_path.erl b/src/rebar_prv_path.erl index 05fb046..d8e14a4 100644 --- a/src/rebar_prv_path.erl +++ b/src/rebar_prv_path.erl @@ -108,7 +108,7 @@ normalize(AppName) when is_atom(AppName) -> atom_to_list(AppName); normalize(AppName) when is_binary(AppName) -> binary_to_list(AppName). path_opts(_State) -> - [{app, undefined, "apps", string, help(app)}, + [{app, undefined, "app", string, help(app)}, {base, undefined, "base", boolean, help(base)}, {bin, undefined, "bin", boolean, help(bin)}, {ebin, undefined, "ebin", boolean, help(ebin)}, |