diff options
author | Luis Rascao <[email protected]> | 2017-01-04 19:21:33 +0000 |
---|---|---|
committer | Luis Rascao <[email protected]> | 2017-01-28 00:40:46 +0000 |
commit | 4314d778176225b6caecd354d6fddbdc5a1f7e17 (patch) | |
tree | bf76a452163442bb5f26642b29f21fbe6bdc180e /src/rlx_config.erl | |
parent | 2640387cf1ba24682690b5d6f488df3d8ded5501 (diff) | |
download | relx-4314d778176225b6caecd354d6fddbdc5a1f7e17.tar.gz relx-4314d778176225b6caecd354d6fddbdc5a1f7e17.tar.bz2 relx-4314d778176225b6caecd354d6fddbdc5a1f7e17.zip |
Expose warnings as errors option
Obtained from command line and saved in the state
to be used on situations where we want to error out on
warnings explicitly.
Diffstat (limited to 'src/rlx_config.erl')
-rw-r--r-- | src/rlx_config.erl | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/rlx_config.erl b/src/rlx_config.erl index dfcb511..b5ef51b 100644 --- a/src/rlx_config.erl +++ b/src/rlx_config.erl @@ -269,6 +269,8 @@ load_terms({overlay_vars, OverlayVars}, {ok, State}) -> NewOverlayVars0 = list_of_overlay_vars_files(OverlayVars), NewOverlayVars1 = CurrentOverlayVars ++ NewOverlayVars0, {ok, rlx_state:put(State, overlay_vars, NewOverlayVars1)}; +load_terms({warnings_as_errors, WarningsAsErrors}, {ok, State}) -> + {ok, rlx_state:warnings_as_errors(State, WarningsAsErrors)}; load_terms({Name, Value}, {ok, State}) when erlang:is_atom(Name) -> {ok, rlx_state:put(State, Name, Value)}; |