Skip to content

Commit

Permalink
fix: removing weird '"' on commit messages
Browse files Browse the repository at this point in the history
  • Loading branch information
KaueSabinoSRV17 committed Jul 7, 2023
1 parent 837f5ff commit bab7251
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/commit/conventional_commit.go
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ func ResolveCommitMessage() string {
}

func ConventionalCommit(gitDirectory, prefix, message string) {
formatedMessage := fmt.Sprintf(`"%s: %s"`, prefix, message)
formatedMessage := fmt.Sprintf(`%s: %s`, prefix, message)
cmd := command.GitCommand(gitDirectory, "commit", "-m", formatedMessage)
_, err := cmd.Output()
if err != nil {
Expand Down

0 comments on commit bab7251

Please sign in to comment.