Skip to content

Commit

Permalink
Fix co-authored string
Browse files Browse the repository at this point in the history
  • Loading branch information
inverse committed May 23, 2023
1 parent 5812553 commit 3cdbfcb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/git/git.go
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ func createTemplateFile(contributors []string, templateFilePath string) error {
defer templateFile.Close()

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

0 comments on commit 3cdbfcb

Please sign in to comment.