summaryrefslogtreecommitdiff
path: root/src/rebar_prv_shell.erl
diff options
context:
space:
mode:
authorAlexander Sedov <asedov@platbox.com>2016-10-11 16:30:27 +0300
committerAlexander Sedov <asedov@platbox.com>2016-10-11 16:31:07 +0300
commit4ce21e4c800108030d5c646b226032f460e68065 (patch)
tree25ea3046c761453653c97a29de67b931253ef6fb /src/rebar_prv_shell.erl
parent0afb4c4d477b1c1fba54ad3ef086d0697a5faeaa (diff)
Avoid backward-compatibility-breaking changes.
Diffstat (limited to 'src/rebar_prv_shell.erl')
-rw-r--r--src/rebar_prv_shell.erl4
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.