diff options
| author | Jeff Carr <[email protected]> | 2025-10-10 17:51:16 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-10-10 17:51:16 -0500 |
| commit | c157efbd13c6fce157b87ec9da006e0fa3d538d6 (patch) | |
| tree | 81e6654a5695ab57430bd8e2d852a8efc6df4254 | |
| parent | 501f27c316e053b004765863b51aada48513ba44 (diff) | |
also ignore 'no namespace' patches
| -rw-r--r-- | doPatch.go | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -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 { |
