Explorar el Código

Merge pull request #47 from uwiger/master

rebar_eunit:reset_after_eunit/1 mustn't remove 'included_applications'
pull/3/head
Dave Smith hace 12 años
padre
commit
d3c125de27
Se han modificado 1 ficheros con 2 adiciones y 1 borrados
  1. +2
    -1
      src/rebar_eunit.erl

+ 2
- 1
src/rebar_eunit.erl Ver fichero

@ -666,7 +666,8 @@ reset_after_eunit({OldProcesses, WasAlive, OldAppEnvs, _OldACs}) ->
end,
ok = application:unset_env(App, K)
end || App <- Apps, App /= rebar,
{K, _V} <- application:get_all_env(App)],
{K, _V} <- application:get_all_env(App),
K =/= included_applications],
reconstruct_app_env_vars(Apps),

Cargando…
Cancelar
Guardar