Closed
Description
I am trying to build a .deb, and the folder that I specify in extraResources
ends up in the wrong place.
Config:
"build": {
"app-bundle-id": "apple.app.id",
"app-category-type": "public.app-category.utilities",
"productName": "Product",
"asar": false,
"extraResources": ["dist/"],
"osx": {
"background": "app/assets/bg.jpg",
"icon": "build/icons/app.icns"
},
"linux": {
}
},
"directories": {
"output": "release"
},
The intermediate packager output looks like
release/
|-Product-linux-x64/
|-...
|-resources/
|-dist/
|-...
When I install and run the .deb I electron gives me file not found errors looking for resources/dist/bundle.js
and resources/dist/bundle.css
.