Skip to content

Commit

Permalink
chore!(extra files): fixing makefile bug [2024-10-22]
Browse files Browse the repository at this point in the history
BREAKING CHANGE: fixing makefile bug
  • Loading branch information
CHRISCARLON committed Oct 22, 2024
1 parent 0ed2e70 commit f732a5f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion makefile
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ git-commit:
read -p "Enter commit message: " msg; \
if [ "$$breaking" = "y" ] || [ "$$breaking" = "Y" ]; then \
if [ -n "$$scope" ]; then \
git commit -m "$$type!($scope): $$msg [$(DATE)]" -m "BREAKING CHANGE: $$msg"; \
git commit -m "$$type!($$scope): $$msg [$(DATE)]" -m "BREAKING CHANGE: $$msg"; \
else \
git commit -m "$$type!: $$msg [$(DATE)]" -m "BREAKING CHANGE: $$msg"; \
fi; \
Expand Down

0 comments on commit f732a5f

Please sign in to comment.