summaryrefslogtreecommitdiff
path: root/windowPatches.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-10-16 02:21:32 -0500
committerJeff Carr <[email protected]>2025-10-16 02:21:32 -0500
commit246771554e3b9abc8d070864c0c90de3d4647b58 (patch)
tree18b1d5d6c7e6a038b537e42130c25278d70db842 /windowPatches.go
parent43750a33995434b6e699bd1fbcc6ea442f238d12 (diff)
argv cleanups for doVerify
Diffstat (limited to 'windowPatches.go')
-rw-r--r--windowPatches.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/windowPatches.go b/windowPatches.go
index 65f54b7..362c0ca 100644
--- a/windowPatches.go
+++ b/windowPatches.go
@@ -84,7 +84,7 @@ func makePatchesWin(patches *forgepb.Patches) *stdPatchTableWin {
func applyPatchNew(p *forgepb.Patch) error {
rn := p.Namespace
- repo := me.forge.FindByGoPath(rn)
+ repo := me.forge.FindByNamespace(rn)
if repo == nil {
log.Info("Could not figure out repo path", rn)
return log.Errorf("%s namespace?\n", rn)
@@ -117,7 +117,7 @@ func (dwin *stdPatchTableWin) doPatchesTable(currentPatches *forgepb.Patches) {
// used by the PB table
func applyPatchLabel(p *forgepb.Patch) string {
rn := p.Namespace
- if repo := me.forge.FindByGoPath(rn); repo == nil {
+ if repo := me.forge.FindByNamespace(rn); repo == nil {
// log.Info("Could not figure out repo path", rn)
return ""
}