Skip to content

Commit ee98786

Browse files
committed
[Debug] Add hash to resource directory to avoid collisions
1 parent b7ce806 commit ee98786

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ReleaseTooling/Sources/ZipBuilder/ZipBuilder.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -485,7 +485,7 @@ struct ZipBuilder {
485485
if packageKind == "Firebase" {
486486
// Move all the bundles in the frameworks out to a common "Resources" directory to
487487
// match the existing Zip structure.
488-
let resourcesDir = productPath.appendingPathComponent("Resources")
488+
let resourcesDir = productPath.appendingPathComponent("Resources-\(UUID().uuidString)")
489489
try fileManager.moveItem(at: xcResourceDir, to: resourcesDir)
490490

491491
} else {

0 commit comments

Comments
 (0)