diff options
author | Alexander Sedov <asedov@platbox.com> | 2016-10-11 16:30:27 +0300 |
---|---|---|
committer | Alexander Sedov <asedov@platbox.com> | 2016-10-11 16:31:07 +0300 |
commit | 4ce21e4c800108030d5c646b226032f460e68065 (patch) | |
tree | 25ea3046c761453653c97a29de67b931253ef6fb /src/rebar_prv_shell.erl | |
parent | 0afb4c4d477b1c1fba54ad3ef086d0697a5faeaa (diff) |
Avoid backward-compatibility-breaking changes.
Diffstat (limited to 'src/rebar_prv_shell.erl')
-rw-r--r-- | src/rebar_prv_shell.erl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/rebar_prv_shell.erl b/src/rebar_prv_shell.erl index e14ae3a..b7febf8 100644 --- a/src/rebar_prv_shell.erl +++ b/src/rebar_prv_shell.erl @@ -331,8 +331,8 @@ reread_config(State) -> case find_config(State) of no_config -> ok; - Config -> - _ = rebar_utils:reread_config([Config]), + ConfigList -> + _ = rebar_utils:reread_config(ConfigList), ok end. |