We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9084ece commit 9b95516Copy full SHA for 9b95516
Sources/PublicModules/PADPackageFileAnalyzer/SwiftPackageFileAnalyzer.swift
@@ -342,6 +342,9 @@ private extension SwiftPackageFileAnalyzer {
342
343
// MARK: Target Resources
344
345
+ logger?.log("Old project base path \(oldProjectBasePath)", from: String(describing: Self.self))
346
+ logger?.log("New project base path \(newProjectBasePath)", from: String(describing: Self.self))
347
+
348
let oldResourcePaths = Set((oldTarget.resources?.map(\.path) ?? []).map { $0.trimmingPrefix(oldProjectBasePath) })
349
let newResourcePaths = Set((newTarget.resources?.map(\.path) ?? []).map { $0.trimmingPrefix(newProjectBasePath) })
350
0 commit comments