ソースを参照

Merge pull request #47 from uwiger/master

rebar_eunit:reset_after_eunit/1 mustn't remove 'included_applications'
pull/3/head
Dave Smith 12年前
コミット
d3c125de27
1個のファイルの変更2行の追加1行の削除
  1. +2
    -1
      src/rebar_eunit.erl

+ 2
- 1
src/rebar_eunit.erl ファイルの表示

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

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