Migrate appendingPathComponent to appending(component:)

`appending(component:)` is the more modern API and can take multiple path components at the same time.
This commit is contained in:
Alex Hoppen
2025-09-20 19:18:49 +02:00
parent 32e919c0cd
commit 95538e7de9
52 changed files with 332 additions and 432 deletions

View File

@@ -93,7 +93,7 @@ package actor JSONCompilationDatabaseBuildServer: BuiltInBuildServer {
}
package var indexDatabasePath: URL? {
indexStorePath?.deletingLastPathComponent().appendingPathComponent("IndexDatabase")
indexStorePath?.deletingLastPathComponent().appending(component: "IndexDatabase")
}
package nonisolated var supportsPreparationAndOutputPaths: Bool { false }