diff options
author | Tristan Sloughter <t@crashfast.com> | 2015-04-22 21:51:11 -0500 |
---|---|---|
committer | Tristan Sloughter <t@crashfast.com> | 2015-04-22 21:54:14 -0500 |
commit | e5988f69e0fc577f9c759f0907bd8b6840851035 (patch) | |
tree | e9dd6e803dde1d5c1560a56adb8674e66a51149d /test | |
parent | 16e9b3ffa2ddd81e26238530fd1e25a54a42b7dc (diff) |
R15 support, replace unsetenv with putenv empty string
Diffstat (limited to 'test')
-rw-r--r-- | test/rebar_profiles_SUITE.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/rebar_profiles_SUITE.erl b/test/rebar_profiles_SUITE.erl index 59c65e9..2d03432 100644 --- a/test/rebar_profiles_SUITE.erl +++ b/test/rebar_profiles_SUITE.erl @@ -121,7 +121,7 @@ all_deps_code_paths(Config) -> ["compile"], {ok, [{app, Name} ,{dep, "a", "1.0.0"} ,{dep, "b", "2.0.0"}]}), - os:unsetenv("REBAR_PROFILE"), + os:putenv("REBAR_PROFILE", ""), Paths = rebar_state:code_paths(State, all_deps), Path = lists:reverse(["_build", "all_deps_test", "lib", "b", "ebin"]), |