1
0
mirror of https://github.com/squidfunk/mkdocs-material.git synced 2024-11-24 15:40:15 +01:00

Added missing script in package.json

This commit is contained in:
squidfunk 2017-04-05 12:57:09 +02:00 committed by Martin Donath
parent 3f1d258cb6
commit 2c429eb739
2 changed files with 3 additions and 2 deletions

View File

@ -31,7 +31,8 @@
"start": "scripts/start",
"test:visual:run": "scripts/test/visual/run",
"test:visual:update": "scripts/test/visual/update",
"test:visual:session": "scripts/test/visual/session"
"test:visual:session": "scripts/test/visual/session",
"travis": "scripts/travis"
},
"dependencies": {
"escape-string-regexp": "^1.0.5"

View File

@ -25,7 +25,7 @@ yarn run build
[ $? -gt 0 ] && exit 1
# Deploy documentation to GitHub pages
mkdocs gh-deploy
# mkdocs gh-deploy
# Terminate if we're not on a release branch
echo "$TRAVIS_BRANCH" | grep -qvE "^[0-9.]+$" && exit 0; :;