Skip to content

Commit 3cdbfcb

Browse files
committed
Fix co-authored string
1 parent 5812553 commit 3cdbfcb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

internal/git/git.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ func createTemplateFile(contributors []string, templateFilePath string) error {
4747
defer templateFile.Close()
4848

4949
for _, contributor := range contributors {
50-
_, err := templateFile.WriteString(contributor + "\n")
50+
_, err := templateFile.WriteString(fmt.Sprintf("Co-authored-by: %s \n", contributor))
5151
if err != nil {
5252
return err
5353
}

0 commit comments

Comments
 (0)