debug fmt.Sprintf typo

This commit is contained in:
SowinskiBraeden committed 2023-06-15 12:15:22 -07:00
1 parent fcea1153cc
commit a655b619e4
1 file changed
+1 -1
+1 -1
View File
@@ -50,7 +50,7 @@ func UploadToGithub(archiveDir string) {
} }
// Commit archive files // Commit archive files
cmd = exec.Command("git", "commit", "-m", fmt.Sprintf("'%s''", now.Format(dtFormat)), fmt.Springf("--author=\"%s <%s>\"", author, email)) cmd = exec.Command("git", "commit", "-m", fmt.Sprintf("'%s''", now.Format(dtFormat)), fmt.Sprintf("--author=\"%s <%s>\"", author, email))
cmd.Dir = archiveDir cmd.Dir = archiveDir
_, err = cmd.Output() _, err = cmd.Output()
Handle(err) Handle(err)