Skip to content

Commit 3b6eafe

Browse files
author
José Valim
committed
Just skip loadpaths on deps.update and deps.get
1 parent 1db68b4 commit 3b6eafe

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

lib/mix/lib/mix/cli.ex

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,8 @@ defmodule Mix.CLI do
9090
IO.puts "Elixir #{System.version}"
9191
end
9292

93-
defp deps_task?("deps." <> _), do: true
93+
defp deps_task?("deps.update"), do: true
94+
defp deps_task?("deps.get"), do: true
9495
defp deps_task?(_), do: false
9596

9697
# Check for --help or --version in the args

0 commit comments

Comments
 (0)