summaryrefslogtreecommitdiff
path: root/doPatches.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-01-20 01:47:27 -0600
committerJeff Carr <[email protected]>2025-01-20 01:47:27 -0600
commit25b2e50f6b1a15f887416479cd0df583cc6d4e19 (patch)
tree53df31b1523a11aa93c5c61cd04c64555578627a /doPatches.go
parentca51b9ba74535ddfd01b15a395b910ac12767241 (diff)
git commit --all works
Diffstat (limited to 'doPatches.go')
-rw-r--r--doPatches.go13
1 files changed, 13 insertions, 0 deletions
diff --git a/doPatches.go b/doPatches.go
new file mode 100644
index 0000000..8f7b6dd
--- /dev/null
+++ b/doPatches.go
@@ -0,0 +1,13 @@
+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")
+ }
+}