Browse Source

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

pull/3/head
Dave Smith 15 years ago
parent
commit
96e9a2a521
1 changed files with 7 additions and 1 deletions
  1. +7
    -1
      src/rebar_reltool.erl

+ 7
- 1
src/rebar_reltool.erl View File

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

Loading…
Cancel
Save