Fix codesign path for app bundle main binaries

Signed-off-by: Claudio Cambra <claudio.cambra@nextcloud.com>
This commit is contained in:
Claudio Cambra 2024-11-20 18:03:33 +08:00
parent 5f62cd8b7d
commit 4d15f47e09
No known key found for this signature in database
GPG key ID: C839200C384636B0

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)
}