Skip to content

Commit 5297779

Browse files
committed
PHPAY-27: fix: husky
1 parent 68d854e commit 5297779

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.husky/commit-msg

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ if [ -z "$ISSUE_ID" ]; then
1616
fi
1717

1818
case "$COMMIT_MESSAGE" in
19-
"PHPAY-$ISSUE_ID"*)
19+
"$ISSUE_ID"*)
2020
exit 0
2121
;;
2222
esac
2323

24-
echo "$ISSUE_ID: $COMMIT_MESSAGE" > "$1"
24+
echo "PHPAY-$ISSUE_ID: $COMMIT_MESSAGE" > "$1"

0 commit comments

Comments
 (0)