Skip to content

Commit

Permalink
Fix artefact signing for the release (#1298)
Browse files Browse the repository at this point in the history
## Changes

Fix artefacts name for the signing process

## Test plan

N/A
  • Loading branch information
pkukielka authored Apr 9, 2024
1 parent 5ffd30e commit a63c8d6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,7 @@ tasks {
// Apple M1 computers. This is required to prevent the following issue
// https://github.com/vercel/pkg/issues/2004
if (isLdidSign) {
val arm64Binary = buildCodyDir.resolve("agent-macos-arm64").toString()
val arm64Binary = buildCodyDir.resolve("cody-agent-macos-arm64").toString()
println("Signing ldid -S $arm64Binary")
exec { commandLine("ldid", "-S", arm64Binary) }
}
Expand Down

0 comments on commit a63c8d6

Please sign in to comment.