-
-
Notifications
You must be signed in to change notification settings - Fork 1.8k
New issue
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
electron-builder 20.29.0+ bundles fail to run on macOS Catalina #4179
Comments
20.28.4 and 20.29.0 are so old and there have been may recent fixes to improve notarisation support. Have you tried the latest 21.2.0? |
I am also encountering this issue on [email protected]. This appears to be the same issue as #4108 This occurs for me regardless of if I use an mac:
target:
- dmg
- zip
category: public.app-category.productivity
type: distribution Versions:
|
I had assumed that Electron v4.x was a requirement for notarisation but not really sure where I got that from. I had the same crash at startup when using anything but the default entitlements but now everything works even with custom entitlements and can't reproduce the previous issues so it's a weird one... |
Oh man, if you do find any concrete information on that, would you please ping me? I'd like to keep us on the 3.x line for macOS 10.9 support. Then again, Electron v3 is EoL'd, so maybe I should just do the responsible thing and update. In terms of repro, I running into some really weird stuff:
Testing with an unnotarized app I have no issues with the ZIP file on my 10.14 machine. On the 10.15 machine, where I obtain the ZIP file by downloading it from a server:
With a notarized build on 10.15
So I guess that leaves us with the following list of options?
The good news is that this doesn't appear to affect auto-update on mac for me, so I think I can proceed by simply distributing the DMG and I guess just crossing my fingers? |
I noticed the same thing as @mcous. I tested on Mojave and extracting/running the notarized zip works fine so it seems like an issue with Archive Utility on Catalina not correctly extracting notarized apps. |
Duplicate issue and potential workaround: #4299 (comment) |
See comment #4299 (comment) |
Is this still relevant? If so, what is blocking it? Is there anything you can do to help move it forward? This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. |
There seems to be a regression between electron-builder 20.28.4 and 20.29.0 that makes the app not run on macOS Catalina with an error like "The application Foo.app can't be opened":
Note that this is not a notarization error, it's something different.
Repro steps:
Package app using
electron-webpack-quick-start@master
on a Mojave machine, upload .zip to the internet, download on Catalina and attempt to run the app. The app fails to run with the message above.Package app using
electron-webpack-quick-start@09ae10e82e728047aed5e7341c4a555398fee33d
(uses electron-builder 20.28.1), repeat steps above, and confirm that it works fine on Catalina although you might get a different "can't check for malicious software" app notarization errorTo make our app compatible with macOS Catalina, we downgraded to
[email protected]
, build into a directory using--dir
, manually runelectron-osx-sign
with--entitlements="entitlements.plist" --entitlements-inherit="entitlements.plist" --hardened-runtime=true
, manually runelectron-notarize
, and manually create a .zip.The text was updated successfully, but these errors were encountered: