Merge pull request #7527 from nextcloud/bugfix/yet-another-path-problem-mac-crafter

Fix codesign path for app bundle main binaries
This commit is contained in:
Claudio Cambra 2024-11-20 18:12:19 +08:00 committed by GitHub
commit feec773d3f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -125,5 +125,5 @@ func codesignClientAppBundle(
// Now we do the final codesign bit
print("Code-signing Nextcloud Desktop Client binaries...")
try codesign(identity: codeSignIdentity, path: "\(clientContentsDir)/MacOS/*")
try recursivelyCodesign(path: "\(clientContentsDir)/MacOS/", identity: codeSignIdentity)
}