From 60590239349ae326ccc4ec6fce14f6a4477fbf9f Mon Sep 17 00:00:00 2001 From: Jake Petroules Date: Fri, 11 Jul 2025 14:53:27 -0700 Subject: [PATCH] Fix compilation error when USE_STATIC_PLUGIN_INITIALIZATION is off --- Sources/SWBCore/Core.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sources/SWBCore/Core.swift b/Sources/SWBCore/Core.swift index 238a2e92..7686414d 100644 --- a/Sources/SWBCore/Core.swift +++ b/Sources/SWBCore/Core.swift @@ -330,7 +330,7 @@ public final class Core: Sendable { // Search paths relative to SWBCore itself. do { func appendInferior(_ path: Path) { - if !developerPath.dirname.isAncestor(of: path) { + if !developerPath.path.dirname.isAncestor(of: path) { result.append(path) } }