summaryrefslogtreecommitdiff
path: root/applyPatch.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2024-12-30 00:50:51 -0600
committerJeff Carr <[email protected]>2024-12-30 00:50:51 -0600
commit4fc958fcc9069211260d6b2ebf0b6ef9ce0398d6 (patch)
tree05f5f208d9f4e196fd481f0ddf85aa7401b970d6 /applyPatch.go
parent45c32bc7fc00fd43b1b54d36f96671368323d238 (diff)
trust nothing. but this might work. notsure
it's hard to do distributed work when the tools are themselves being worked on. lots of crazy in these patches until they actually work. I'm switching between droplets, hypervisors, etc.
Diffstat (limited to 'applyPatch.go')
-rw-r--r--applyPatch.go6
1 files changed, 4 insertions, 2 deletions
diff --git a/applyPatch.go b/applyPatch.go
index 5c1ee12..0985345 100644
--- a/applyPatch.go
+++ b/applyPatch.go
@@ -12,8 +12,10 @@ import (
func applyPatches(pset *forgepb.Patchs) error {
// log.Info("got to applyPatches() pset", pset)
- log.Info("got to applyPatches() name", pset.Name)
- log.Info("got to applyPatches() comment", pset.Comment)
+ log.Info("applyPatches() NAME", pset.Name)
+ log.Info("applyPatches() COMMENT", pset.Comment)
+ log.Info("applyPatches() GIT_AUTHOR_NAME", pset.GetGitAuthorName())
+ log.Info("applyPatches() GIT_AUTHOR_EMAIL", pset.GetGitAuthorEmail())
all := pset.SortByFilename()
for all.Scan() {
p := all.Next()