App does not get packaged correctly due to extract-zip regression
See original GitHub issueI simply need some help because after packaging my app it does not start. No window comes up, it simply does nothing.
My package.json:
{ "name": "CloudSystem.iO", "productName": "CloudSystem.iO", "description": "A minimal Electron application", "version": "1.0.0", "main": "app.js", "private": true, "scripts": { "start": "electron .", "package": "electron-packager . CloudSystem.iO --platform=win32 --arch=x64 --overwrite --out ./dist/build --icon ./build/icon.ico", "build": "build --win --x64 --prepackaged ./dist/build/CloudSystem.iO-win32-x64" }, "author": "Felix Gaebler", "devDependencies": { "electron": "1.4.15", "electron-cookies": "1.1.0", "extract-zip": "1.6.0" }, "dependencies": {} }
I hope you can help me a bit 😃
When I run the build without a path it creates the package in dist/win-unpacked. This binary is execuable! But some scripts are not working and the logo is missing on the platform
Issue Analytics
- State:
- Created 6 years ago
- Comments:7 (4 by maintainers)
Yep, I just released
extract-zip
1.6.5, and I can no longer reproduce this.I’m thinking this has something to do with https://github.com/electron/electron/issues/9323, because this hasn’t been a problem before yesterday.