Skip to content

Commit 15ce974

Browse files
committed
fix: make hex available for engine when using burrito
1 parent 3a5c74d commit 15ce974

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

apps/engine/lib/engine/engine/build/project.ex

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,11 +73,11 @@ defmodule Engine.Build.Project do
7373
defp prepare_for_project_build(true = _initial?) do
7474
if connected_to_internet?() do
7575
with_progress "mix local.hex", fn ->
76-
Mix.Task.run("local.hex", ~w(--force --if-missing))
76+
Mix.Task.run("local.hex", ~w(--force))
7777
end
7878

7979
with_progress "mix local.rebar", fn ->
80-
Mix.Task.run("local.rebar", ~w(--force --if-missing))
80+
Mix.Task.run("local.rebar", ~w(--force))
8181
end
8282

8383
with_progress "mix deps.get", fn ->

0 commit comments

Comments
 (0)