From 9f43c7fdbf0ae84a173be112c1c6a712ddde28c7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Hoguin?= Date: Wed, 19 Mar 2025 11:58:06 +0100 Subject: Don't fail Mix autopatch if Elixir is disabled but it has a Makefile --- core/deps.mk | 2 ++ 1 file changed, 2 insertions(+) (limited to 'core') diff --git a/core/deps.mk b/core/deps.mk index d2719e5..8b158b7 100644 --- a/core/deps.mk +++ b/core/deps.mk @@ -252,6 +252,8 @@ define dep_autopatch_detect echo mix; \ elif [ -f $(DEPS_DIR)/$1/rebar.lock -o -f $(DEPS_DIR)/$1/rebar.config ]; then \ echo rebar3; \ + elif [ -f $(DEPS_DIR)/$1/Makefile ]; then \ + echo noop; \ else \ exit 99; \ fi \ -- cgit v1.2.3