Skip to content

Commit b7dd50c

Browse files
committed
reverting path formatting
1 parent 1b11435 commit b7dd50c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Sources/PublicModules/PADPackageFileAnalyzer/SwiftPackageFileAnalyzer+Targets.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -146,13 +146,13 @@ private extension SwiftPackageFileAnalyzer {
146146

147147
let oldResources = old.map { resource in
148148
var updated = resource
149-
updated.path = ".\(updated.path.trimmingPrefix(oldProjectBasePath))"
149+
updated.path = updated.path.trimmingPrefix(oldProjectBasePath)
150150
return updated
151151
}
152152

153153
let newResources = new.map { resource in
154154
var updated = resource
155-
updated.path = ".\(updated.path.trimmingPrefix(newProjectBasePath))"
155+
updated.path = updated.path.trimmingPrefix(newProjectBasePath)
156156
return updated
157157
}
158158

0 commit comments

Comments
 (0)