From c157efbd13c6fce157b87ec9da006e0fa3d538d6 Mon Sep 17 00:00:00 2001 From: Jeff Carr Date: Fri, 10 Oct 2025 17:51:16 -0500 Subject: also ignore 'no namespace' patches --- doPatch.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/doPatch.go b/doPatch.go index 82e15e8..75e23a6 100644 --- a/doPatch.go +++ b/doPatch.go @@ -167,6 +167,10 @@ func doPatchProcess() (string, error) { // already applied continue } + if p.State == "no namespace" { + // you don't have this repo on your disk + continue + } newpatches.Clone(p) } if newpatches.Len() == 0 { -- cgit v1.2.3