Browse Source

Portability via filename:join/1

pull/3/head
Scott Lystig Fritchie 14 years ago
parent
commit
b674ea19a4
1 changed files with 3 additions and 2 deletions
  1. +3
    -2
      src/rebar_eunit.erl

+ 3
- 2
src/rebar_eunit.erl View File

@ -528,8 +528,9 @@ kill_extras(Pids) ->
reconstruct_app_env_vars([App|Apps]) ->
CmdLine0 = proplists:get_value(App, init:get_arguments(), []),
CmdVars = [{list_to_atom(K), list_to_atom(V)} || {K, V} <- CmdLine0],
AppFile = (catch code:lib_dir(App) ++
"/ebin/" ++ atom_to_list(App) ++ ".app"),
AppFile = (catch filename:join([code:lib_dir(App),
"ebin",
atom_to_list(App) ++ ".app"])),
AppVars = case file:consult(AppFile) of
{ok, [{application, App, Ps}]} ->
proplists:get_value(env, Ps, []);

Loading…
Cancel
Save