Skip to content

Commit

Permalink
🐛 Corrected test change in commit hook
Browse files Browse the repository at this point in the history
  • Loading branch information
govind-srinidhi committed Apr 3, 2024
1 parent ed7d60f commit 91bc058
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion git-hooks/commit-msg
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ do
# Commit message

# Commit message should have < 100 characters
if [ ${#line} -gt 200 ]; then
if [ ${#line} -gt 100 ]; then
echo "\n${RED} ❌ Commit message lines should have less than 100 characters${COLOR_RESET}\n"
exit 1
fi
Expand Down

0 comments on commit 91bc058

Please sign in to comment.