Skip to content
This repository was archived by the owner on Apr 21, 2021. It is now read-only.

Commit 0f21e66

Browse files
committed
Removed the option to validate PDFs and fixed node version issues
1 parent d0fce5d commit 0f21e66

File tree

3 files changed

+3
-9
lines changed

3 files changed

+3
-9
lines changed

.nvmrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
8.0

.travis.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,7 @@ env:
1111
sudo: required
1212

1313
before_install:
14-
- sudo apt-get update
15-
- sudo apt-get install oracle-java8-installer
16-
- sudo update-java-alternatives -s java-8-oracle
14+
- nvm install 8.0
1715

1816
install:
1917
- sudo apt-get update

Makefile

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ help:
88
@echo "Other commands:"
99
@echo " make build Builds HTML version of all books"
1010
@echo " make build-pdf Builds PDFs for the user manual"
11-
@echo " make validate Builds books and validates for invalid HTML output"
1211
@echo " make install Installs latest GitBook and dependencies"
1312
@echo ""
1413

@@ -33,8 +32,4 @@ install-python:
3332
@echo "--> You must have Python virtualenv"
3433
@virtualenv python_modules
3534

36-
validate: build install-python
37-
@python_modules/bin/pip install html5validator
38-
@python_modules/bin/python2.7 python_modules/bin/html5validator --root manual/_book/ --ignore "gitbook/plugins" "element must have an" "A document must not include both" "Duplicate ID"
39-
40-
deploy: validate build-pdf
35+
deploy: build build-pdf

0 commit comments

Comments
 (0)