소스 검색

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,

불러오는 중...
취소
저장