ソースを参照

Look for dirs named erts-vsn when setting up spec for copying files

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

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

@ -246,8 +246,14 @@ spec_copy_overlay([F | Rest], Dir, Acc) ->
{ok, Info} = file:read_file_info(Filename),
case Info#file_info.type of
directory ->
%% If this directory has the special name of "erts-vsn", we are going to replace "vsn" with the
%% actual erts vsn for the output directory name
case filename:basename(Filename) of
"erts-vsn" -> OutDir = "erts-" ++ erlang:system_info(version);
OutDir -> ok
end,
{ok, Files} = file:list_dir(Filename),
Entry = {create_dir, filename:basename(Filename), spec_copy_overlay(Files, Filename, [])},
Entry = {create_dir, OutDir, spec_copy_overlay(Files, Filename, [])},
spec_copy_overlay(Rest, Dir, [Entry | Acc]);
regular ->
Entry = {copy_file, filename:basename(F), filename:absname(Filename)},

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