summaryrefslogtreecommitdiff
path: root/doPatches.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-01-28 22:47:53 -0600
committerJeff Carr <[email protected]>2025-01-29 12:18:16 -0600
commit345c1ee9b1a3d5a55fef53edb2f3a6d89aaf2fcd (patch)
treee49f21b69ecc672041c7aa5c63b747e5c5bd8c2c /doPatches.go
parentbbf5f79acb6d17239a492effb4e2cdb15ef20579 (diff)
move submit patchset to forgepb
Diffstat (limited to 'doPatches.go')
-rw-r--r--doPatches.go13
1 files changed, 0 insertions, 13 deletions
diff --git a/doPatches.go b/doPatches.go
deleted file mode 100644
index 8f7b6dd..0000000
--- a/doPatches.go
+++ /dev/null
@@ -1,13 +0,0 @@
-package main
-
-import (
- "go.wit.com/log"
-)
-
-func doSubmit(name string) {
- if err := sendDevelDiff(name); err != nil {
- log.Info("sending patches failed", err)
- } else {
- log.Info("sent patch set ok")
- }
-}