File tree Expand file tree Collapse file tree 2 files changed +5
-1
lines changed
Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change 44
55* Enhancements
66 * [ Elixir] Support Erlang 17.5 and 18.0
7+ * [ Mix] Support "--search PATTERN" in "mix help"
8+ * [ Mix] Support ` :start_permanent ` that starts the application as permanent
9+ * [ Mix] Support ` :build_embedded ` that compile protocols, avoid symlinks and ensure protocols are loaded on boot
10+ * [ Mix] Make "mix app.start" public and support "--permanent" and "--temporary" options
711 * [ URI] Speed decoding operations
812
913* Bug fixes
Original file line number Diff line number Diff line change @@ -56,7 +56,7 @@ defmodule Mix.Tasks.App.Start do
5656 # or not.
5757 #
5858 # Mix should not depend directly on Logger so check that it's loaded.
59- if Code . ensure_loaded? ( Logger ) , do: Logger.App . stop ( )
59+ if Process . whereis ( Logger ) , do: Logger.App . stop ( )
6060 start ( Mix.Project . config , opts )
6161 end
6262 end
You can’t perform that action at this time.
0 commit comments