浏览代码

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 年前
父节点
当前提交
3e7a58ccd6
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. +1
    -1
      src/rebar_prv_release.erl

+ 1
- 1
src/rebar_prv_release.erl 查看文件

@ -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,

正在加载...
取消
保存