From 0487f12ffff5a35e107dfa2d81d59efbbc1c68fe Mon Sep 17 00:00:00 2001 From: Kevin van Zonneveld Date: Tue, 21 Jun 2016 10:14:19 +0200 Subject: [PATCH] Fix os condition for deploys --- .travis.yml | 2 +- package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 5abe7e4..4891a5a 100644 --- a/.travis.yml +++ b/.travis.yml @@ -24,4 +24,4 @@ deploy: script: website/_bin/deploy.sh on: branch: master - os: linux + condition: $TRAVIS_OS_NAME = linux diff --git a/package.json b/package.json index cf49c17..e52edb9 100644 --- a/package.json +++ b/package.json @@ -16,7 +16,7 @@ "web:build": "cd website && bundle exec jekyll build --incremental", "web:inject": "./website/_bin/inject.sh", "web:install": "cd website && bundle install --path ./_vendor", - "web:preview": "npm-run-all --parallel web:watch web:serve", + "web:preview": "npm-run-all web:install --parallel web:watch web:serve", "web:serve": "cd website/_site && browser-sync start --server --files .", "web:watch": "nodemon --verbose --watch ./ --ignore 'website/*.md' --ignore 'website/_site/*' --ext json,md,js,css,png,jpg --exec 'npm-run-all web:inject web:build'" },