summaryrefslogtreecommitdiff
path: root/src/r3.erl
diff options
context:
space:
mode:
authorTristan Sloughter <tristan.sloughter@gmail.com>2015-05-30 10:37:18 -0500
committerTristan Sloughter <tristan.sloughter@gmail.com>2015-05-30 10:37:18 -0500
commitb51a0e314b2fb5a26c99625d025d70bf5c571b23 (patch)
tree4169aafe29ed425f9e1ec7c7d90a927b55da211c /src/r3.erl
parenta11c009fcfe02fb7741bb7ce0c8ebaf2141ffd8d (diff)
parentc87f2a2c73ccdff29c0b320070c5599716b47fca (diff)
Merge pull request #473 from ferd/improve-shell
improve the rebar3 shell
Diffstat (limited to 'src/r3.erl')
-rw-r--r--src/r3.erl7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/r3.erl b/src/r3.erl
new file mode 100644
index 0000000..5e8b26d
--- /dev/null
+++ b/src/r3.erl
@@ -0,0 +1,7 @@
+%%% external alias for rebar_agent
+-module(r3).
+-export([do/1, do/2]).
+
+do(Command) -> rebar_agent:do(Command).
+
+do(Namespace, Command) -> rebar_agent:do(Namespace, Command).