[gradle] More gradle 9 codesign updates (#8536)

This replicates the fix in #8531 for other binaries that are still tripping up CI.
This commit is contained in:
PJ Reiniger
2026-01-02 15:33:00 -05:00
committed by GitHub
parent 8518b7014c
commit 5a3f2ce13a
5 changed files with 20 additions and 20 deletions

View File

@@ -129,8 +129,8 @@ model {
doLast {
if (project.hasProperty("developerID")) {
// Get path to binary.
exec {
workingDir rootDir
providers.exec {
setWorkingDir(rootDir)
def args = [
"sh",
"-c",
@@ -139,8 +139,8 @@ model {
"--verbose -s ${project.findProperty("developerID")} " +
"$project.buildDir/outputs/bundles/$binary.targetPlatform.architecture.name/Glass.app/"
]
commandLine args
}
commandLine(args)
}.result.get()
}
}
}