diff options
| author | Jeff Carr <[email protected]> | 2025-01-20 01:47:27 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-01-20 01:47:27 -0600 |
| commit | 25b2e50f6b1a15f887416479cd0df583cc6d4e19 (patch) | |
| tree | 53df31b1523a11aa93c5c61cd04c64555578627a /doPatches.go | |
| parent | ca51b9ba74535ddfd01b15a395b910ac12767241 (diff) | |
git commit --all works
Diffstat (limited to 'doPatches.go')
| -rw-r--r-- | doPatches.go | 13 |
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") + } +} |
