Fixed typo (#3533)

Git convention has it capitalised.
This commit is contained in:
LFlare 2016-08-30 02:31:12 +08:00 committed by 无闻
parent 62b0dc4853
commit 3738b6399e
1 changed files with 1 additions and 1 deletions

View File

@ -877,7 +877,7 @@ func initRepoCommit(tmpPath string, sig *git.Signature) (err error) {
if _, stderr, err = process.ExecDir(-1,
tmpPath, fmt.Sprintf("initRepoCommit (git commit): %s", tmpPath),
"git", "commit", fmt.Sprintf("--author='%s <%s>'", sig.Name, sig.Email),
"-m", "initial commit"); err != nil {
"-m", "Initial commit"); err != nil {
return fmt.Errorf("git commit: %s", stderr)
}