From 3ee9f0db8b795a92466aeb0df73d4a1f4d424445 Mon Sep 17 00:00:00 2001 From: Guilherme Monteiro de Oliveira Date: Wed, 25 Feb 2026 09:51:40 -0300 Subject: [PATCH] Avoid Recipe errors in external ifs The tabs in Python and pre-commit check ifs trigger recipe error, so to avoid that problem, remove the indentation from the ifs. Signed-off-by: Guilherme Monteiro de Oliveira --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 9104128..e15dcbe 100644 --- a/Makefile +++ b/Makefile @@ -9,12 +9,12 @@ UV:=$(VENV)/bin/uv PRE_COMMIT_LOC:=$(VENV)/.custom_pre_commit_installed ifeq ($(shell python --version | grep -E $(PY_VERSION) 2> /dev/null),) - $(error Python $(PY_VERSION) not found) +$(error Python $(PY_VERSION) not found) endif PRE_COMMIT=$(VENV)/bin/pre-commit ifneq ($(shell which pre-commit 2> /dev/null),) - PRE_COMMIT=pre-commit +PRE_COMMIT=pre-commit endif .PHONY: all