I haven't used Linux much but I'm trying to run an application which I've packaged using electron-packager.
So while on Linux, I can run npm start
and my app works fine. But when I package it, there doesn't seem to be an installer or anything. Packaging and running on Windows work fine.
I packaged using:
npm run package-linux
Edit as requested:
I'm using Linux mint-19.1-cinnamon-64bit.
The package script I used is;
"package-linux": "electron-packager . electron-tutorial-app --overwrite --asar=true --platform=linux --arch=x64 --icon=assets/icons/png/icon.png --prune=true --out=release-builds"
Running the npm run package-linux
completes successfully and produces a folder called electron-tutorial-app-linux-x64
in a release-builds folder.