Skip to content

Commit

Permalink
v3.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
JannisX11 committed Jul 19, 2019
1 parent abdf97d commit 43a4799
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,13 @@ matrix:

- name: "Windows"
os: osx
script: build -w --x64 --publish=always
script: electron-builder -w --x64 --publish=always

- name: "Linux"
os: linux
script:
- sudo apt-get install rpm
- build --publish=always
- electron-builder --publish=always


cache:
Expand All @@ -29,7 +29,7 @@ install:
- npm install electron-builder

script:
- build --publish=always
- electron-builder --publish=always

notifications:
email: false
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -73,9 +73,9 @@
}
},
"scripts": {
"dist": "build --publish=always",
"win64": "build -w --ia32 --publish=always",
"win32": "build -w --x64 --publish=always"
"dist": "electron-builder --publish=always",
"win64": "electron-builder -w --ia32 --publish=always",
"win32": "electron-builder -w --x64 --publish=always"
},
"devDependencies": {
"async": "^2.4.1",
Expand Down

0 comments on commit 43a4799

Please sign in to comment.