Skip to content

Commit

Permalink
Merge pull request #191 from tsloughter/master
Browse files Browse the repository at this point in the history
fix cli/config file merging
  • Loading branch information
jwilberding committed May 24, 2014
2 parents 23d3d77 + 3686e4b commit 916e29b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/rlx_prv_config.erl
Original file line number Diff line number Diff line change
Expand Up @@ -265,5 +265,5 @@ merge_configs([{Key, Value} | CliTerms], ConfigTerms) ->
merge_configs(CliTerms, [{Key, Value} | ConfigTerms])
end;
_ ->
merge_configs(CliTerms, [{Key, Value} | ConfigTerms])
merge_configs(CliTerms, lists:keystore(Key, 1, ConfigTerms, {Key, Value}))
end.

0 comments on commit 916e29b

Please sign in to comment.