We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d17a6db commit b822502Copy full SHA for b822502
1 file changed
lib/igniter/util/install.ex
@@ -77,7 +77,7 @@ defmodule Igniter.Util.Install do
77
"""
78
end
79
80
- force_yes? = not IO.inspect(Igniter.Mix.Task.tty?())
+ force_yes? = not Igniter.Mix.Task.tty?()
81
82
{igniter, installing, {options, _}} =
83
Igniter.Util.Info.compose_install_and_validate!(
@@ -89,7 +89,7 @@ defmodule Igniter.Util.Install do
89
installs: deps
90
},
91
"igniter.install",
92
- yes: force_yes? or "--yes" in argv ,
+ yes: force_yes? or "--yes" in argv,
93
yes_to_deps: force_yes? or "--yes-to-deps" in argv,
94
only: only,
95
append?: Keyword.get(opts, :append?, false)
0 commit comments