summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-10-10 17:51:16 -0500
committerJeff Carr <[email protected]>2025-10-10 17:51:16 -0500
commitc157efbd13c6fce157b87ec9da006e0fa3d538d6 (patch)
tree81e6654a5695ab57430bd8e2d852a8efc6df4254
parent501f27c316e053b004765863b51aada48513ba44 (diff)
also ignore 'no namespace' patches
-rw-r--r--doPatch.go4
1 files changed, 4 insertions, 0 deletions
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 {