Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Loading