We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
osx-sign will attempt to pass a PnP zip path to codesign, which it can't read, resulting in an error:
codesign
WARNING: Code sign failed; please retry manually. Error: Command failed: codesign <snip> --entitlements /Users/connor.worley/Code/github.com/connorworley/karafriends/.yarn/cache/@electron-osx-sign-npm-1.0.4-aaf9a8f648-0d7382922e.zip/node_modules/@electron/osx-sign/entitlements/default.darwin.plist <snip>
It seems like copying the default entitlements files to a tmp directory and returning that path indefaultOptionsForFile would be a sufficient fix.
defaultOptionsForFile
The text was updated successfully, but these errors were encountered:
I'm running into this very issue, and I can't get past it. Any ideas?
Sorry, something went wrong.
I had to switch back to nodeLinker: node-modules :\
nodeLinker: node-modules
Ahh, too bad. Thanks for the follow up!
@connorworley, @sibljon: You can work around this issue by making sure the package is unzipped during the installation phase:
yarn unplug @electron/osx-sign -R
You might then want to repeat the step for dmg-builder, too, which has a comparable issue.
dmg-builder
No branches or pull requests
osx-sign will attempt to pass a PnP zip path to
codesign
, which it can't read, resulting in an error:It seems like copying the default entitlements files to a tmp directory and returning that path in
defaultOptionsForFile
would be a sufficient fix.The text was updated successfully, but these errors were encountered: