From 9025bf436a22a4209f1df477aee006cfaa96b270 Mon Sep 17 00:00:00 2001 From: Jeff Carr Date: Thu, 28 Aug 2025 19:22:03 -0500 Subject: [PATCH] don't carry around the patchset files anymore --- doPatchsets.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doPatchsets.go b/doPatchsets.go index 9cd6a1f..9ad2395 100644 --- a/doPatchsets.go +++ b/doPatchsets.go @@ -111,7 +111,7 @@ func savePatchset(w http.ResponseWriter, msg []byte) error { now := time.Now() // timestamp := now.Format("2022.07.18.190545") // 50yr shout out to K&R timestamp := now.Format("2006.01.02.150405") // bummer. other date doesn't work? - filename := filepath.Join(LIBDIR, "patchset/", timestamp+".submitted.pb") + filename := filepath.Join(LIBDIR, "patchset.archive/", timestamp+".submitted.pb") regfile, err := os.OpenFile(filename, os.O_RDWR|os.O_CREATE|os.O_TRUNC, 0666) if err != nil { log.Info("filename open error:", filename, err)