From f732a5f124494049800e4f02b1e742754586c656 Mon Sep 17 00:00:00 2001 From: Chris Carlon Date: Tue, 22 Oct 2024 16:37:20 +0100 Subject: [PATCH] chore!(extra files): fixing makefile bug [2024-10-22] BREAKING CHANGE: fixing makefile bug --- makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/makefile b/makefile index c8dfe15..9c14f2e 100644 --- a/makefile +++ b/makefile @@ -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; \