Linux build fixes

* remove rpm builds
* fix executable name
This commit is contained in:
Matthias Kretschmann 2019-05-29 02:17:05 +02:00
parent 9f7a72cc48
commit 1c8ec7ee87
Signed by: m
GPG Key ID: 606EEEF3C479A91F
2 changed files with 4 additions and 6 deletions

View File

@ -95,10 +95,10 @@ npm run dist
Will build and package the app into platform specific packages for macOS, Windows & Linux. Will build and package the app into platform specific packages for macOS, Windows & Linux.
On a Mac and Linux machine, packaging requires [`wine`](https://www.winehq.org) and `rpm` in your `PATH`. To install on macOS with [Homebrew](https://brew.sh): On a Mac and Linux machine, packaging requires [`wine`](https://www.winehq.org) in your `PATH`. To install on macOS with [Homebrew](https://brew.sh):
```bash ```bash
brew install wine rpm brew install wine
``` ```
## Creating Releases ## Creating Releases

View File

@ -76,12 +76,11 @@
"linux": { "linux": {
"target": [ "target": [
"deb", "deb",
"rpm",
"snap", "snap",
"AppImage" "AppImage"
], ],
"category": "Office", "category": "Office",
"executableName": "desiredName", "executableName": "Blowfish",
"artifactName": "${productName}-${version}.${ext}" "artifactName": "${productName}-${version}.${ext}"
} }
}, },
@ -102,8 +101,7 @@
"dist/*.dmg", "dist/*.dmg",
"dist/*.AppImage", "dist/*.AppImage",
"dist/*.deb", "dist/*.deb",
"dist/*.snap", "dist/*.snap"
"dist/*.rpm"
] ]
}, },
"npm": { "npm": {