Fix os condition for deploys

This commit is contained in:
Kevin van Zonneveld 2016-06-21 10:14:19 +02:00
parent 00f84ff8d9
commit 0487f12fff
2 changed files with 2 additions and 2 deletions

View File

@ -24,4 +24,4 @@ deploy:
script: website/_bin/deploy.sh
on:
branch: master
os: linux
condition: $TRAVIS_OS_NAME = linux

View File

@ -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'"
},