diff options
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") + } +} |
