diff options
author | Tristan Sloughter <t@crashfast.com> | 2014-11-30 10:55:36 -0600 |
---|---|---|
committer | Tristan Sloughter <t@crashfast.com> | 2014-11-30 10:55:36 -0600 |
commit | 56fdedaf7278accf6e261c54d022f4c9e1afc1fc (patch) | |
tree | 066f832ba928d058208e2de1fe18b1c464d16917 /src | |
parent | 5fdf2f82d57ed0b404e5dfa207b4944f0b8a412d (diff) |
switch to REBAR_DEFAULT_PROFILE to make it clear the profile becomes the default for the run
Diffstat (limited to 'src')
-rw-r--r-- | src/rebar3.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rebar3.erl b/src/rebar3.erl index ebb0ea2..94ba2a4 100644 --- a/src/rebar3.erl +++ b/src/rebar3.erl @@ -106,7 +106,7 @@ run_aux(State, GlobalPluginProviders, RawArgs) -> application:start(ssl), inets:start(), - State2 = case os:getenv("REBAR_PROFILE") of + State2 = case os:getenv("REBAR_DEFAULT_PROFILE") of false -> State; Profile -> |