Skip to content

Commit 0780df6

Browse files
committed
Fix duplicate rule name
1 parent 4388dc8 commit 0780df6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Sources/Build/BuildManifest/LLBuildManifestBuilder+Product.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,9 +92,9 @@ extension LLBuildManifestBuilder {
9292
)
9393

9494
try self.manifest.addShellCmd(
95-
name: "\(cmdName)-entitlements",
95+
name: "\(cmdName)-codesigning",
9696
description: "Applying debug entitlements to \(buildProduct.binaryPath.prettyPath())",
97-
inputs: [.virtual(targetName + "-CodeSigning")],
97+
inputs: [codeSigningOutput],
9898
outputs: [.file(buildProduct.binaryPath)],
9999
arguments: ["mv", linkedBinaryPath.pathString, buildProduct.binaryPath.pathString]
100100
)

0 commit comments

Comments
 (0)