Skip to content

Commit 86eebc5

Browse files
committed
Do not provide default value for profiling
1 parent 0bb98d4 commit 86eebc5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/mix/lib/mix/cli.ex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ defmodule Mix.CLI do
1010
if env_variable_activated?("MIX_QUIET"), do: Mix.shell(Mix.Shell.Quiet)
1111
if env_variable_activated?("MIX_DEBUG"), do: Mix.debug(true)
1212

13-
if profile = System.get_env("MIX_PROFILE", "") do
13+
if profile = System.get_env("MIX_PROFILE") do
1414
Mix.State.put(:profile, String.split(profile, ","))
1515
end
1616

0 commit comments

Comments
 (0)