Skip to content

Commit b822502

Browse files
committed
chore: remove IO.inspect
1 parent d17a6db commit b822502

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

lib/igniter/util/install.ex

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ defmodule Igniter.Util.Install do
7777
"""
7878
end
7979

80-
force_yes? = not IO.inspect(Igniter.Mix.Task.tty?())
80+
force_yes? = not Igniter.Mix.Task.tty?()
8181

8282
{igniter, installing, {options, _}} =
8383
Igniter.Util.Info.compose_install_and_validate!(
@@ -89,7 +89,7 @@ defmodule Igniter.Util.Install do
8989
installs: deps
9090
},
9191
"igniter.install",
92-
yes: force_yes? or "--yes" in argv ,
92+
yes: force_yes? or "--yes" in argv,
9393
yes_to_deps: force_yes? or "--yes-to-deps" in argv,
9494
only: only,
9595
append?: Keyword.get(opts, :append?, false)

0 commit comments

Comments
 (0)