From c1be9cc3c3ce966c2f38e96e1fe44d683e54b1dd Mon Sep 17 00:00:00 2001 From: htlee Date: Sat, 14 Feb 2026 22:18:37 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20commit-msg=20hook=20grep=20-P=EB=A5=BC?= =?UTF-8?q?=20-E=EB=A1=9C=20=EB=B3=80=EA=B2=BD=20(macOS=20=ED=98=B8?= =?UTF-8?q?=ED=99=98)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .githooks/commit-msg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.githooks/commit-msg b/.githooks/commit-msg index f08b390..93bb350 100755 --- a/.githooks/commit-msg +++ b/.githooks/commit-msg @@ -26,7 +26,7 @@ PATTERN='^(feat|fix|docs|style|refactor|test|chore|ci|perf)(\([a-zA-Z0-9가-힣. FIRST_LINE=$(head -1 "$COMMIT_MSG_FILE") -if ! echo "$FIRST_LINE" | grep -qP "$PATTERN"; then +if ! echo "$FIRST_LINE" | grep -qE "$PATTERN"; then echo "" echo "╔══════════════════════════════════════════════════════════════╗" echo "║ 커밋 메시지가 Conventional Commits 형식에 맞지 않습니다 ║"