diff options
author | Tuncer Ayaz <tuncer.ayaz@gmail.com> | 2012-11-10 21:49:19 +0100 |
---|---|---|
committer | Tuncer Ayaz <tuncer.ayaz@gmail.com> | 2012-11-11 00:21:13 +0100 |
commit | a9491e112f81652574bfeac028491559326843cf (patch) | |
tree | cfe084a7130f4f445098a6e89ab8a6913ed7d30a /src | |
parent | 93f6ef36af5c22ae6aa548ea74bf2e0901ad7672 (diff) |
Fix Dialyzer warning in rebar:run/2
Diffstat (limited to 'src')
-rw-r--r-- | src/rebar.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rebar.erl b/src/rebar.erl index 82e3fac..c7c9d29 100644 --- a/src/rebar.erl +++ b/src/rebar.erl @@ -69,7 +69,7 @@ main(Args) -> %% Erlang-API entry point run(BaseConfig, Commands) -> - application:load(rebar), + _ = application:load(rebar), run_aux(BaseConfig, Commands). %% ==================================================================== |