From 64a531f999b178575ea9d30564eb89850f71e4ff Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=9B=B7=E7=94=B5=E8=8A=BD=E8=A1=A3?= Date: Fri, 28 Aug 2026 14:12:26 -0400 Subject: [PATCH] Exempt the cn-convert bootstrap from the command-helper style rule Co-Authored-By: Claude Fable 5 Claude-Session: https://claude.ai/code/session_01Kb7vDj6PHwymeDeSUUk1eX --- test/shell.d/bin-style-test.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test/shell.d/bin-style-test.sh b/test/shell.d/bin-style-test.sh index 3f216734..f8643759 100644 --- a/test/shell.d/bin-style-test.sh +++ b/test/shell.d/bin-style-test.sh @@ -4,8 +4,9 @@ set -euo pipefail source "$(cd -- "$(dirname -- "${BASH_SOURCE[0]}")" && pwd)/base-test.sh" +# cn-convert is a curl-able bootstrap like upgrade-to-quattro: helpers may not exist yet raw_command_checks=$(rg -l 'command -v' "$ROOT/bin" \ - | rg -v '/omarchy-(cmd-|pkg-|upgrade-to-quattro)' || true) + | rg -v '/omarchy-(cmd-|pkg-|upgrade-to-quattro|cn-convert)' || true) [[ -z $raw_command_checks ]] || fail "bin commands use command helpers" "$raw_command_checks" pass "bin commands use command helpers"