summaryrefslogtreecommitdiff
path: root/patchset.Make.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-09-23 10:17:36 -0500
committerJeff Carr <[email protected]>2025-09-23 10:17:36 -0500
commit884d8db5855ab91a5efa2ce0e5465be7d2279447 (patch)
treea25583d4a779e6c975f571fe0c9b2ae6bb7f29c4 /patchset.Make.go
parent4eada310b83d28d6406a6e44d453749e1ed9502a (diff)
tinkering with set.PrintTable()v0.0.147
Diffstat (limited to 'patchset.Make.go')
-rw-r--r--patchset.Make.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/patchset.Make.go b/patchset.Make.go
index c8bfdc0..39eb827 100644
--- a/patchset.Make.go
+++ b/patchset.Make.go
@@ -288,6 +288,7 @@ func findPatchId(repo *gitpb.Repo, p *Patch) error {
return fmt.Errorf("patchid did not match %s != %v", p.CommitHash, fields)
}
- p.PatchId = fields[1]
+ // log.Infof("hash=%s patchid(%v) %s\n", p.CommitHash, fields, p.Filename)
+ p.PatchId = fields[0]
return nil
}