From cf0c8250578b6c1adea8b578633585555e938a59 Mon Sep 17 00:00:00 2001 From: KurbyDoo <106122181+KurbyDoo@users.noreply.github.com> Date: Thu, 6 Aug 2026 19:39:14 -0400 Subject: [PATCH] Fix default value handling in format-check script --- scripts/format-check.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/format-check.sh b/scripts/format-check.sh index 89f6a81..c7f3ec4 100755 --- a/scripts/format-check.sh +++ b/scripts/format-check.sh @@ -46,7 +46,7 @@ fi echo echo "==> Checking code style (ruff check)" -if ! uv run ruff check "${check_format[@]}" .; then +if ! uv run ruff check "${check_format[@]:-}" .; then echo echo "Found style problems. Many can be fixed automatically with:" >&2 echo " scripts/format-check.sh --fix" >&2