From a00c9e5e7c4bc24a3af4740a89da334b922e8c30 Mon Sep 17 00:00:00 2001 From: Jort Date: Wed, 25 Feb 2026 13:27:07 +0100 Subject: [PATCH] chore(husky): fixed husky commit message from bash/zsh syntax to sh syntax (#2572) --- .husky/commit-msg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.husky/commit-msg b/.husky/commit-msg index 61e13c0e..e2f1f077 100755 --- a/.husky/commit-msg +++ b/.husky/commit-msg @@ -1,4 +1,4 @@ #!/bin/sh . "$(dirname "$0")/_/husky.sh" -[[ -n $HUSKY_BYPASS ]] || npx commitlint --edit $1 +[ -n "$HUSKY_BYPASS" ] || npx commitlint --edit $1