diff options
author | Tristan Sloughter <t@crashfast.com> | 2014-08-24 12:41:13 -0500 |
---|---|---|
committer | Tristan Sloughter <t@crashfast.com> | 2014-08-24 12:41:13 -0500 |
commit | c7313a59805efcd7eff946c6290a452cb9252bc3 (patch) | |
tree | 6e763a4a1e6f450152f414b20facfe55cd8d9c2f | |
parent | 4b31a20a61b89d2979816646f8feca806d419564 (diff) |
rename shell provider
-rw-r--r-- | ebin/rebar.app | 4 | ||||
-rw-r--r-- | src/rebar_prv_shell.erl (renamed from src/rebar_shell.erl) | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/ebin/rebar.app b/ebin/rebar.app index c8787e3..cc754f9 100644 --- a/ebin/rebar.app +++ b/ebin/rebar.app @@ -36,7 +36,7 @@ rebar_prv_new, rebar_prv_update, rebar_mustache, - rebar_shell, + rebar_prv_shell, rebar_state, rebar_prv_tar, rebar_templater, @@ -66,7 +66,7 @@ rebar_erlydtl_compiler, rebar_prv_app_builder, rebar_prv_app_discovery, - rebar_shell, + rebar_prv_shell, rebar_ct, rebar_prv_tar, rebar_prv_new, diff --git a/src/rebar_shell.erl b/src/rebar_prv_shell.erl index fdd8523..ef53518 100644 --- a/src/rebar_shell.erl +++ b/src/rebar_prv_shell.erl @@ -25,7 +25,7 @@ %% THE SOFTWARE. %% ------------------------------------------------------------------- --module(rebar_shell). +-module(rebar_prv_shell). -author("Kresten Krab Thorup <krab@trifork.com>"). -behaviour(rebar_provider). |