From a655b619e41374d3fee514c7c7f1391ba5529625 Mon Sep 17 00:00:00 2001 From: Braeden Sowinski Date: Thu, 15 Jun 2023 12:15:22 -0700 Subject: [PATCH] debug fmt.Sprintf typo --- main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.go b/main.go index 35b4782..ff5f939 100644 --- a/main.go +++ b/main.go @@ -50,7 +50,7 @@ func UploadToGithub(archiveDir string) { } // 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 _, err = cmd.Output() Handle(err)