Browse Source

Reverse relx args order for config

With the new priority order, and knowing Relx processes things in
reverse already (possibly building a dict internally), we should flip
our options around to keep them correct.
pull/290/head
Fred Hebert 10 years ago
parent
commit
3e7a58ccd6
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/rebar_prv_release.erl

+ 1
- 1
src/rebar_prv_release.erl View File

@ -47,7 +47,7 @@ do(State) ->
,{caller, Caller}], AllOptions);
Config ->
relx:main([{lib_dirs, LibDirs}
,{config, Config}
,{config, lists:reverse(Config)}
,{output_dir, OutputDir}
,{caller, Caller}], AllOptions)
end,

Loading…
Cancel
Save