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 /bootstrap | |
parent | 16e9b3ffa2ddd81e26238530fd1e25a54a42b7dc (diff) |
R15 support, replace unsetenv with putenv empty string
Diffstat (limited to 'bootstrap')
-rwxr-xr-x | bootstrap | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -25,7 +25,7 @@ main(_Args) -> os:putenv("REBAR_PROFILE", "bootstrap"), {ok, State} = rebar3:run(["compile"]), reset_env(), - os:unsetenv("REBAR_PROFILE"), + os:putenv("REBAR_PROFILE", ""), %% Build erlydtl files (a hook on compile in the default profile) and escript file DepsPaths = rebar_state:code_paths(State, all_deps), code:add_pathsa(DepsPaths), |