Browse Source

Add rpm to Linux build outputs.

- Explicitly defining `depends` for the defaults is not necessary as of
  electron-userland/electron-builder#502
pull/223/head
Sebastian Schulze 9 years ago
parent
commit
da4833db0d
No known key found for this signature in database
GPG Key ID: 7EC07325206E3E55
  1. 1
      .travis.yml
  2. 7
      package.json

1
.travis.yml

@ -29,6 +29,7 @@ before_install:
sudo apt-get update -qq;
sudo apt-get install -qq libxml2-dev;
sudo apt-get install -qq libappindicator1;
sudo apt-get install -qq rpm;
fi
install:
- git config --global core.autocrlf input

7
package.json

@ -90,14 +90,11 @@
"linux": {
"target": [
"AppImage",
"deb",
"deb",
"rpm",
"zip",
"tar.gz"
],
"depends": [
"libappindicator1",
"libnotify-bin"
],
"icon": "./resources/Icon.png"
}
},

Loading…
Cancel
Save