You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I agree to follow the code of conduct that this project follows, as appropriate.
I have searched the issue tracker for a bug that matches the one I want to file, without success.
Issue Details
Electron Packager Version:
v17.1.1
Electron Version:
25.0.0
Operating System:
macOS Ventura
Last Known Working Electron Packager version::
N/A
Expected Behavior
--arch=all passes and generates binaries for all possible architectures
Actual Behavior
--arch=all fails due to @electron/universal errors.
To Reproduce
Clone electron-quick-start
Run npx electron-packager . --arch=all
Additional Information
This seems like a concurrency issue with building universal at the same time as x64 and arm64. It looks like we're trying to build both architectures twice (once for each build then again for universal).
The text was updated successfully, but these errors were encountered:
Preflight Checklist
Issue Details
Expected Behavior
--arch=all
passes and generates binaries for all possible architecturesActual Behavior
--arch=all
fails due to@electron/universal
errors.To Reproduce
electron-quick-start
npx electron-packager . --arch=all
Additional Information
This seems like a concurrency issue with building
universal
at the same time asx64
andarm64
. It looks like we're trying to build both architectures twice (once for each build then again foruniversal
).The text was updated successfully, but these errors were encountered: