Skip to content

Commit

Permalink
check git configuration before exec world create
Browse files Browse the repository at this point in the history
  • Loading branch information
zulkhair committed Aug 27, 2024
1 parent ef6982b commit b4a4011
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion common/teacmd/git.go
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ func GitCloneCmd(url string, targetDir string, initMsg string) error {
return err
}

_, err = git("commit", "-m", initMsg)
_, err = git("commit", "--author=\"World CLI <[email protected]>\"", "-m", initMsg)
if err != nil {
return err
}
Expand Down

0 comments on commit b4a4011

Please sign in to comment.