Browse Source

Limit line length

pull/3/head
Tuncer Ayaz 13 years ago
parent
commit
ab79534507
1 changed files with 2 additions and 1 deletions
  1. +2
    -1
      src/rebar_rel_utils.erl

+ 2
- 1
src/rebar_rel_utils.erl View File

@ -177,7 +177,8 @@ get_root_dir(ReltoolConfig) ->
end. end.
get_target_parent_dir(ReltoolConfig) -> get_target_parent_dir(ReltoolConfig) ->
case lists:reverse(tl(lists:reverse(filename:split(get_target_dir(ReltoolConfig))))) of
TargetDir = get_target_dir(ReltoolConfig),
case lists:reverse(tl(lists:reverse(filename:split(TargetDir)))) of
[] -> "."; [] -> ".";
Components -> filename:join(Components) Components -> filename:join(Components)
end. end.

Loading…
Cancel
Save