🐞 fix(commit_msg): remove paranthesis

This commit is contained in:
Eshan Roy (Eshanized)
2024-06-16 02:23:49 +05:30
parent 4c3c8ebe1d
commit a012b70d86

View File

@@ -24,7 +24,7 @@ read -p "Enter a short description: " desc
read -p "Enter a longer description (optional): " long_desc
# Create the commit message
commit_msg="$emoji [$type($scope)] $desc"
commit_msg="$emoji $type($scope): $desc"
# If a longer description was provided, add it to the commit message
if [ -n "$long_desc" ]; then