Skip to content

Commit

Permalink
Get rid of plugins deops in default config
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexey Nikitin committed Mar 29, 2019
1 parent 640e2d4 commit fc6684b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion rebar.config
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{erl_opts, [warnings_as_errors]}.
{deps, [base64url, jsx]}.
{plugins, [rebar3_hex, coveralls]}.
{plugins, [coveralls]}.
{eunit_compile_opts, [export_all]}.

{profiles, [
Expand Down
2 changes: 1 addition & 1 deletion rebar.config.script
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ end,
ConfigCI = case os:getenv("CI") of
"true" ->
Plugins = [rebar3_lint | proplists:get_value(plugins, Config, [])],
lists:keyreplace(plugins, 1, Config, {plugins, Plugins});
lists:keystore(plugins, 1, Config, {plugins, Plugins});
_ ->
Config
end,
Expand Down

0 comments on commit fc6684b

Please sign in to comment.