summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorTuncer Ayaz <tuncer.ayaz@gmail.com>2012-11-10 21:49:19 +0100
committerTuncer Ayaz <tuncer.ayaz@gmail.com>2012-11-11 00:21:13 +0100
commita9491e112f81652574bfeac028491559326843cf (patch)
treecfe084a7130f4f445098a6e89ab8a6913ed7d30a /src
parent93f6ef36af5c22ae6aa548ea74bf2e0901ad7672 (diff)
Fix Dialyzer warning in rebar:run/2
Diffstat (limited to 'src')
-rw-r--r--src/rebar.erl2
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).
%% ====================================================================