Skip to content

Commit 6aa1169

Browse files
authored
Merge pull request #187 from mhanberg/fix-warning
fix: compilation warning
2 parents 323e7ca + dae7e34 commit 6aa1169

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/steps/patch/recompile_nifs.ex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ defmodule Burrito.Steps.Patch.RecompileNIFs do
5050

5151
Enum.map(paths, fn {dep_name, path} ->
5252
Mix.Project.in_project(dep_name, path, fn module ->
53-
if module && Keyword.has_key?(module.project, :compilers) do
53+
if module && Keyword.has_key?(module.project(), :compilers) do
5454
{dep_name, path, Enum.member?(module.project[:compilers], :elixir_make)}
5555
else
5656
{dep_name, path, false}

0 commit comments

Comments
 (0)