From ca3a70d6236dc45c7030405464a41f32ab98845a Mon Sep 17 00:00:00 2001 From: Jeff Carr Date: Sun, 7 Sep 2025 19:14:01 -0500 Subject: [PATCH] move to new httppd package --- doPatch.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/doPatch.go b/doPatch.go index 4e456f1..5b47c34 100644 --- a/doPatch.go +++ b/doPatch.go @@ -45,10 +45,11 @@ func doPatch() error { } if argv.Patch.Submit != nil { - _, err := me.forge.SubmitDevelPatchSet(argv.Patch.Submit.Match) + pset, err := me.forge.MakeDevelPatchSet("testing") if err != nil { return err } + pset.Patches.HttpPostVerbose(myServer(), "new") return nil }