ソースを参照

Make sure to append overlay files to end of spec; otherwise might be overwritten by canonical install

pull/3/head
Dave Smith 15年前
コミット
4d3c7e60d6
1個のファイルの変更1行の追加1行の削除
  1. +1
    -1
      src/rebar_reltool.erl

+ 1
- 1
src/rebar_reltool.erl ファイルの表示

@ -203,7 +203,7 @@ process_rebar_specs([{overlay, Source} | Rest], Spec) ->
case file:list_dir(Source) of
{ok, Files} ->
OverlaySpec = spec_copy_overlay(Files, Source, []),
process_rebar_specs(Rest, [OverlaySpec | Spec]);
process_rebar_specs(Rest, Spec ++ OverlaySpec);
{error, Reason} ->
?ERROR("Failed to list overlay directory ~p: ~p\n", [Source, Reason]),
?FAIL

読み込み中…
キャンセル
保存