Skip to content

Commit 7537861

Browse files
committed
Use question mark at the end of boolean variable
1 parent e6a8bbd commit 7537861

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/mix/lib/mix/tasks/deps.clean.ex

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ defmodule Mix.Tasks.Deps.Clean do
6969
Enum.reject(apps, &(&1 in load_deps))
7070
end
7171

72-
defp do_clean(apps, build, deps, build_only) do
72+
defp do_clean(apps, build, deps, build_only?) do
7373
shell = Mix.shell
7474

7575
Enum.each apps, fn(app) ->
@@ -80,7 +80,7 @@ defmodule Mix.Tasks.Deps.Clean do
8080
|> Path.wildcard
8181
|> Enum.each(&File.rm_rf!/1)
8282

83-
unless build_only do
83+
unless build_only? do
8484
deps
8585
|> Path.join(to_string(app))
8686
|> File.rm_rf!

0 commit comments

Comments
 (0)