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 1b11435 commit b7dd50cCopy full SHA for b7dd50c
Sources/PublicModules/PADPackageFileAnalyzer/SwiftPackageFileAnalyzer+Targets.swift
@@ -146,13 +146,13 @@ private extension SwiftPackageFileAnalyzer {
146
147
let oldResources = old.map { resource in
148
var updated = resource
149
- updated.path = ".\(updated.path.trimmingPrefix(oldProjectBasePath))"
+ updated.path = updated.path.trimmingPrefix(oldProjectBasePath)
150
return updated
151
}
152
153
let newResources = new.map { resource in
154
155
- updated.path = ".\(updated.path.trimmingPrefix(newProjectBasePath))"
+ updated.path = updated.path.trimmingPrefix(newProjectBasePath)
156
157
158
0 commit comments