summaryrefslogtreecommitdiff
path: root/bootstrap
diff options
context:
space:
mode:
authorTristan Sloughter <t@crashfast.com>2015-04-22 21:51:11 -0500
committerTristan Sloughter <t@crashfast.com>2015-04-22 21:54:14 -0500
commite5988f69e0fc577f9c759f0907bd8b6840851035 (patch)
treee9dd6e803dde1d5c1560a56adb8674e66a51149d /bootstrap
parent16e9b3ffa2ddd81e26238530fd1e25a54a42b7dc (diff)
R15 support, replace unsetenv with putenv empty string
Diffstat (limited to 'bootstrap')
-rwxr-xr-xbootstrap2
1 files changed, 1 insertions, 1 deletions
diff --git a/bootstrap b/bootstrap
index 8f7af30..3ed7b2b 100755
--- a/bootstrap
+++ b/bootstrap
@@ -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),