From 64bf0c695166120df7df4b1c5f75c69c1b130263 Mon Sep 17 00:00:00 2001 From: John Bampton Date: Fri, 22 May 2026 04:54:00 +1000 Subject: [PATCH] [CI] Fix Makefile target command to run against master branch Minor fix to change `main` to `master` --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index d29200b8c4e..e1c7815343b 100644 --- a/Makefile +++ b/Makefile @@ -21,7 +21,7 @@ check: install ## run all pre-commit checks prek run --all-files check-from-ref: install ## will run prek checks for all changes since you branched off - prek run --from-ref main + prek run --from-ref master check-install: ## checks for a uv installation @command -v uv >/dev/null 2>&1 || (echo 'uv not found, install via: curl -LsSf https://astral.sh/uv/install.sh | sh' && exit 1)