Skip to content

Commit

Permalink
chore: bump installer, remove debug code
Browse files Browse the repository at this point in the history
  • Loading branch information
zachdaniel committed Jan 21, 2025
1 parent 778f9bc commit 2fffe61
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions installer/lib/mix/tasks/igniter.install.ex
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ if !Code.ensure_loaded?(Mix.Tasks.Igniter.Install) do

argv = Enum.reject(argv, &(&1 in ["--igniter-repeat", "--from-igniter-new"]))

if Code.ensure_loaded?(Igniter.Util.Install) |> IO.inspect() do
if Code.ensure_loaded?(Igniter.Util.Install) do
{argv, positional} = extract_positional_args(argv)

packages =
Expand Down Expand Up @@ -134,11 +134,11 @@ if !Code.ensure_loaded?(Mix.Tasks.Igniter.Install) do
Igniter.Installer.Loading.with_spinner(
"compiling igniter",
fn ->
System.cmd("mix", ["deps.get"]) |> IO.inspect()
System.cmd("mix", ["deps.get"])
Mix.Task.reenable("deps.compile")
Mix.Task.reenable("deps.loadpaths")
Mix.Task.run("deps.compile", []) |> IO.inspect()
Mix.Task.run("deps.loadpaths", ["--no-deps-check"]) |> IO.inspect()
Mix.Task.run("deps.compile", [])
Mix.Task.run("deps.loadpaths", ["--no-deps-check"])
Mix.Task.reenable("deps.compile")
Mix.Task.reenable("deps.loadpaths")
end,
Expand Down
2 changes: 1 addition & 1 deletion installer/mix.exs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
defmodule Igniter.New.MixProject do
use Mix.Project

@version "0.5.8"
@version "0.5.9"
@scm_url "https://github.com/ash-project/igniter"

def project do
Expand Down

0 comments on commit 2fffe61

Please sign in to comment.