Skip to content

Commit

Permalink
2.3.2
Browse files Browse the repository at this point in the history
Builds Snap image
  • Loading branch information
CorySanin committed Feb 6, 2019
1 parent 64d8dab commit 693b629
Show file tree
Hide file tree
Showing 3 changed files with 300 additions and 213 deletions.
14 changes: 11 additions & 3 deletions .travis.yml
@@ -1,8 +1,12 @@
language: node_js
node_js: "node"
os:
- linux
- osx
matrix:
include:
- os: linux
env: snap=false
- os: linux
env: snap=true
- os: osx
notifications:
email: false
install:
Expand All @@ -12,7 +16,11 @@ script:
- node insertVersion.js
- rm insertVersion.js
- if [ $TRAVIS_OS_NAME == "linux" ]; then
if [ $snap == "true" ]; then
npm run distSnap;
else
npm run distDeb;
fi
else
npm run distMac;
npm run distWin;
Expand Down

0 comments on commit 693b629

Please sign in to comment.