Procházet zdrojové kódy

Fixed typo (#3533)

Git convention has it capitalised.
LFlare před 8 roky
rodič
revize
3738b6399e
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. 1 1
      models/repo.go

+ 1 - 1
models/repo.go

@@ -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)
 	}