From 51e822e54cf862e3026d23a1f9e74797c4e7f9eb Mon Sep 17 00:00:00 2001 From: Fred Hebert Date: Tue, 26 May 2015 01:07:02 +0000 Subject: Add a shell agent The shell agent allows to run rebar3 commands and autoload compiled modules when that is done. --- src/r3.erl | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 src/r3.erl (limited to 'src/r3.erl') 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). -- cgit v1.1