From 48b2a0ceb535f146042244a5d557569d2f583853 Mon Sep 17 00:00:00 2001 From: filipstrand Date: Thu, 10 Oct 2024 21:09:55 +0200 Subject: [PATCH] Fix `ensure-pre-commit` step in Makefile --- Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile b/Makefile index 9d58705..b394d48 100644 --- a/Makefile +++ b/Makefile @@ -26,6 +26,7 @@ expect-uv: # assume reasonably pre-commit is a safe dependency given its wide support (e.g. GitHub Actions integration) .PHONY: ensure-pre-commit +ensure-pre-commit: @if ! /usr/bin/which -s pre-commit; then \ echo "pre-commit required for submitting commits before pull requests. Using uv tool to install pre-commit."; \ uv tool install pre-commit; \